diff options
| author | Fuwn <[email protected]> | 2024-10-01 06:09:02 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-01 06:09:08 -0700 |
| commit | 63d15b50adcdf17ee2055eb22d06c1d03c6fecd9 (patch) | |
| tree | aed4120c4160729c3ebfb0100c567d9ee7c8199e /hosts | |
| parent | modules: move boot from desktop to pc (diff) | |
| download | nixos-config-63d15b50adcdf17ee2055eb22d06c1d03c6fecd9.tar.xz nixos-config-63d15b50adcdf17ee2055eb22d06c1d03c6fecd9.zip | |
modules: move remaining fina-specific configuration to pc and laptop
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/fina/default.nix | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/hosts/fina/default.nix b/hosts/fina/default.nix index 130397f..c50c5dd 100644 --- a/hosts/fina/default.nix +++ b/hosts/fina/default.nix @@ -6,6 +6,7 @@ imports = [ ./hardware-configuration.nix "${self}/modules/core" + "${self}/modules/laptop" "${self}/modules/options" "${self}/modules/pc" ]; @@ -14,25 +15,10 @@ modules.nix.extend = false; system.stateVersion = "24.05"; networking.hostName = "fina"; - programs.mtr.enable = true; - services = { - desktopManager.plasma6.enable = true; - - displayManager.sddm = { - enable = true; - wayland.enable = true; - }; - - xserver.xkb = { - layout = "us"; - options = "caps:escape"; - }; - - openssh = { - enable = true; - settings.PermitRootLogin = "yes"; - }; + services.openssh = { + enable = true; + settings.PermitRootLogin = "yes"; }; }; } |