diff options
author | Tim Keller <tjkeller.xyz> | 2025-05-27 18:20:00 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-05-27 18:20:00 -0500 |
commit | 264c58e4cec0af0646af7a1ddeec4e14b63cc3b8 (patch) | |
tree | cf4e5f9a3228c6342c446639f7bdf31f551caa2e /modules | |
parent | c26ab56ee95fe9b6a4daba6a80a6a7eaa82e760c (diff) | |
download | nixos-264c58e4cec0af0646af7a1ddeec4e14b63cc3b8.tar.xz nixos-264c58e4cec0af0646af7a1ddeec4e14b63cc3b8.zip |
add docker and full composition pipeline to optiplex
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hosts/optiplex/configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/hosts/optiplex/configuration.nix b/modules/hosts/optiplex/configuration.nix index d018c02..16ba475 100644 --- a/modules/hosts/optiplex/configuration.nix +++ b/modules/hosts/optiplex/configuration.nix @@ -14,6 +14,9 @@ office.enable = true; utilities.enable = true; }; + software.development = { + docker.enable = true; + }; # Install more programs environment.systemPackages = with pkgs; [ @@ -36,6 +39,7 @@ nvidiaSettings = true; open = false; # Not compatible w/ GTX-1050 package = config.boot.kernelPackages.nvidiaPackages.stable; # Still good for 1050 + forceFullCompositionPipeline = true; # Enables vsync }; # Disable suspend |