diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-08-19 12:34:33 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-08-19 12:34:46 -0400 |
| commit | 34d5e48354bb2c1fd4c43b510574cf139cc5b577 (patch) | |
| tree | 1ed50f3e655873479a76ec5c0532b7c482795404 /form | |
| parent | 3d5b7fe5ab1c69f9bf4564ef30e943fa9a8a480f (diff) | |
| download | home-34d5e48354bb2c1fd4c43b510574cf139cc5b577.tar.gz | |
form: update configuration
Diffstat (limited to 'form')
| -rw-r--r-- | form/configuration.nix | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/form/configuration.nix b/form/configuration.nix index 62c6a41..911dffd 100644 --- a/form/configuration.nix +++ b/form/configuration.nix @@ -15,6 +15,7 @@ username = "stefan"; hostname = "form"; wifi = true; + keyd.enable = false; }; config = { @@ -30,10 +31,9 @@ # boot.kernelParams = []; services.xserver.videoDrivers = [ "nvidia" ]; services.desktopManager.plasma6.enable = true; - services.displayManager.sddm = { - enable = false; - }; - services.xserver.enable = true; + # services.displayManager.sddm = { + # enable = false; + # }; console.earlySetup = true; hardware.nvidia = { modesetting.enable = true; @@ -45,6 +45,13 @@ vaapiVdpau ]; + services.xserver = { + enable = true; + displayManager = { + defaultSession = "sway"; + gdm.enable = true; + }; + }; virtualisation.docker = { enable = true; rootless = { |