diff options
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; }; |