From 1a321840fd76b0114e972b754be468cde96b14d0 Mon Sep 17 00:00:00 2001 From: willifan Date: Thu, 23 May 2024 18:29:30 +0200 Subject: [PATCH 1/3] added empty Puenktchen Hyprland directory --- users/willifan/graphical/hyprland/Puenktchen/default.nix | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 users/willifan/graphical/hyprland/Puenktchen/default.nix diff --git a/users/willifan/graphical/hyprland/Puenktchen/default.nix b/users/willifan/graphical/hyprland/Puenktchen/default.nix new file mode 100644 index 0000000..9913631 --- /dev/null +++ b/users/willifan/graphical/hyprland/Puenktchen/default.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + +} \ No newline at end of file From a20e1372d26af4f0b8e708bdf3704607a96233ee Mon Sep 17 00:00:00 2001 From: willifan Date: Thu, 23 May 2024 18:41:17 +0200 Subject: [PATCH 2/3] added vscodium cmake setting --- users/willifan/graphical/dev/vscodium.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/users/willifan/graphical/dev/vscodium.nix b/users/willifan/graphical/dev/vscodium.nix index c2496dd..9543138 100644 --- a/users/willifan/graphical/dev/vscodium.nix +++ b/users/willifan/graphical/dev/vscodium.nix @@ -9,6 +9,7 @@ userSettings = { "[nix]"."editor.tabSize" = 2; "explorer.confirmDragAndDrop" = false; + "cmake.showOptionsMovedNotification" = false; }; extensions = with pkgs.vscode-extensions; [ # System @@ -56,4 +57,4 @@ ]; }; }; -} \ No newline at end of file +} From 694a829e11f2ed84641833757ae3a4cd4285a989 Mon Sep 17 00:00:00 2001 From: willifan Date: Thu, 23 May 2024 19:05:13 +0200 Subject: [PATCH 3/3] added reqired rustup dependencies --- users/willifan/graphical/dev/rust.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/users/willifan/graphical/dev/rust.nix b/users/willifan/graphical/dev/rust.nix index 53031b9..73db7c4 100644 --- a/users/willifan/graphical/dev/rust.nix +++ b/users/willifan/graphical/dev/rust.nix @@ -2,9 +2,12 @@ { environment.systemPackages = with pkgs; [ + clang + llvmPackages.bintools rustup + probe-rs cargo-binutils ]; -} \ No newline at end of file +}