diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2023-09-04 22:27:22 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2023-09-04 22:27:22 -0600 |
| commit | a933e77443bfa3d918b6e04339464d4ae41f86b2 (patch) | |
| tree | 071fb42eebdf547e7343a9a8cf41b490b33e4601 /machines/khad/configuration.nix | |
| parent | 42c3986ed796e6825e8cd8a864da004c50eed6f3 (diff) | |
moved an env config to configs
enabled users for nix
generated new hardware config to hopefully prevent emergency mode
Diffstat (limited to 'machines/khad/configuration.nix')
| -rw-r--r-- | machines/khad/configuration.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/machines/khad/configuration.nix b/machines/khad/configuration.nix index 6f7e415..abc703b 100644 --- a/machines/khad/configuration.nix +++ b/machines/khad/configuration.nix @@ -32,6 +32,8 @@ config.allowUnfree = true; }; + environment.shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/khad/configuration.nix"''; + # Set your time zone. time.timeZone = "US/Mountain"; @@ -48,12 +50,12 @@ # }; # Enable the X11 windowing system. - # services.xserver.enable = true; + services.xserver.enable = true; # Enable the Plasma 5 Desktop Environment. - # services.xserver.displayManager.sddm.enable = true; - # services.xserver.desktopManager.plasma5.enable = true; + services.xserver.displayManager.sddm.enable = true; + services.xserver.desktopManager.plasma5.enable = true; # Configure keymap in X11 |
