From 42c3986ed796e6825e8cd8a864da004c50eed6f3 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 21:56:03 -0600 Subject: hopefully the rebuild stops breaking --- modules/user-profiles/defin.nix | 2 +- modules/user-profiles/root.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/user-profiles/defin.nix b/modules/user-profiles/defin.nix index 36b3cbc..86152f6 100644 --- a/modules/user-profiles/defin.nix +++ b/modules/user-profiles/defin.nix @@ -21,5 +21,5 @@ }; # Allow to run nix - nix.settings.allowed-users = [ "defin" ]; + nix.settings.allowed-users = [ "defin" "root" ]; } \ No newline at end of file diff --git a/modules/user-profiles/root.nix b/modules/user-profiles/root.nix index 89f905c..ea299c0 100644 --- a/modules/user-profiles/root.nix +++ b/modules/user-profiles/root.nix @@ -16,5 +16,5 @@ }; # Allow to run nix - nix.settings.allowed-users = [ "root" ]; + # nix.settings.allowed-users = [ "root" ]; } -- cgit v1.2.3 From a933e77443bfa3d918b6e04339464d4ae41f86b2 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 4 Sep 2023 22:27:22 -0600 Subject: moved an env config to configs enabled users for nix generated new hardware config to hopefully prevent emergency mode --- modules/environment.nix | 2 +- modules/user-profiles/defin.nix | 2 +- modules/user-profiles/root.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'modules') diff --git a/modules/environment.nix b/modules/environment.nix index 07bef00..6842a8c 100644 --- a/modules/environment.nix +++ b/modules/environment.nix @@ -1,7 +1,7 @@ { config, lib, ... }: { environment = { # include user channels in NIX_PATH - shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/zenbook/configuration.nix"''; + # shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/zenbook/configuration.nix"''; # List packages installed in system profile. To search, run: # $ nix search wget variables = { diff --git a/modules/user-profiles/defin.nix b/modules/user-profiles/defin.nix index 86152f6..36b3cbc 100644 --- a/modules/user-profiles/defin.nix +++ b/modules/user-profiles/defin.nix @@ -21,5 +21,5 @@ }; # Allow to run nix - nix.settings.allowed-users = [ "defin" "root" ]; + nix.settings.allowed-users = [ "defin" ]; } \ No newline at end of file diff --git a/modules/user-profiles/root.nix b/modules/user-profiles/root.nix index ea299c0..89f905c 100644 --- a/modules/user-profiles/root.nix +++ b/modules/user-profiles/root.nix @@ -16,5 +16,5 @@ }; # Allow to run nix - # nix.settings.allowed-users = [ "root" ]; + nix.settings.allowed-users = [ "root" ]; } -- cgit v1.2.3 From f23fc012326c4cb77569782fb54472cd25c0fb2a Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Tue, 5 Sep 2023 09:13:51 -0600 Subject: added lspci --- modules/system-packages.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'modules') diff --git a/modules/system-packages.nix b/modules/system-packages.nix index eb86590..4eb36ba 100644 --- a/modules/system-packages.nix +++ b/modules/system-packages.nix @@ -51,6 +51,7 @@ in unzip git wl-clipboard + lspci #For hyprland waybar #For sway -- cgit v1.2.3 From 772702b5fae2cabfd0bc81031ba07090c848beb3 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Tue, 5 Sep 2023 09:18:04 -0600 Subject: added pciutils, removed lspci --- modules/system-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/system-packages.nix b/modules/system-packages.nix index 4eb36ba..7580033 100644 --- a/modules/system-packages.nix +++ b/modules/system-packages.nix @@ -51,7 +51,7 @@ in unzip git wl-clipboard - lspci + pciutils #For hyprland waybar #For sway -- cgit v1.2.3