diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-04 19:34:51 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-04 19:34:51 -0400 |
| commit | e9dc47b252744ada1a8788f19d50d67926fae371 (patch) | |
| tree | ff05ed3f70718f676099b95a66a40553a8108c46 /form | |
| parent | 68454bc5eefa7f28d8146654c048de5053193767 (diff) | |
| download | home-e9dc47b252744ada1a8788f19d50d67926fae371.tar.gz | |
repo: apply stash
Diffstat (limited to 'form')
| -rw-r--r-- | form/configuration.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/form/configuration.nix b/form/configuration.nix index c6fa5b1..69d195c 100644 --- a/form/configuration.nix +++ b/form/configuration.nix @@ -18,6 +18,11 @@ boot.extraModulePackages = [ config.boot.kernelPackages.nvidia_x11 ]; # boot.kernelParams = []; services.xserver.videoDrivers = ["nvidia"]; + services.desktopManager.plasma6.enable = true; + services.displayManager.sddm = { + enable = true; + }; + services.xserver.enable = true; hardware.nvidia = { modesetting.enable = true; open = true; @@ -28,6 +33,13 @@ vaapiVdpau ]; + virtualisation.docker = { + enable = true; + rootless = { + enable = true; + setSocketVariable = true; + }; + }; nixos = { osu.enable = true; }; |