diff options
Diffstat (limited to 'hosts/myrtle/configuration.nix')
-rw-r--r-- | hosts/myrtle/configuration.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/hosts/myrtle/configuration.nix b/hosts/myrtle/configuration.nix index afec6b7..1f9dc21 100644 --- a/hosts/myrtle/configuration.nix +++ b/hosts/myrtle/configuration.nix | |||
@@ -94,7 +94,6 @@ | |||
94 | }; | 94 | }; |
95 | 95 | ||
96 | hardware = { | 96 | hardware = { |
97 | opengl.driSupport = true; | ||
98 | bluetooth = { | 97 | bluetooth = { |
99 | enable = true; | 98 | enable = true; |
100 | powerOnBoot = true; | 99 | powerOnBoot = true; |
@@ -128,12 +127,12 @@ | |||
128 | }; | 127 | }; |
129 | 128 | ||
130 | services = { | 129 | services = { |
130 | libinput.enable = true; | ||
131 | xserver = { | 131 | xserver = { |
132 | enable = true; | 132 | enable = true; |
133 | xkb.layout = "us"; | 133 | xkb.layout = "us"; |
134 | videoDrivers = [ "nvidia" ]; | 134 | videoDrivers = [ "nvidia" ]; |
135 | displayManager.startx.enable = true; | 135 | displayManager.startx.enable = true; |
136 | libinput.enable = true; | ||
137 | dpi = 192; | 136 | dpi = 192; |
138 | screenSection = '' | 137 | screenSection = '' |
139 | Option "metamodes" "nvidia-auto-select +0+0 {ForceFullCompositionPipeline=On}" | 138 | Option "metamodes" "nvidia-auto-select +0+0 {ForceFullCompositionPipeline=On}" |
@@ -203,7 +202,7 @@ | |||
203 | ''; | 202 | ''; |
204 | 203 | ||
205 | virtualisation.docker.enable = true; | 204 | virtualisation.docker.enable = true; |
206 | virtualisation.virtualbox.host.enable = true; | 205 | virtualisation.virtualbox.host.enable = false; |
207 | users.extraGroups.vboxusers.members = [ "np" ]; | 206 | users.extraGroups.vboxusers.members = [ "np" ]; |
208 | 207 | ||
209 | security.sudo = { | 208 | security.sudo = { |
@@ -247,9 +246,9 @@ | |||
247 | }; | 246 | }; |
248 | 247 | ||
249 | nix = { | 248 | nix = { |
250 | package = pkgs.nixUnstable; | 249 | package = pkgs.nixVersions.latest; |
251 | extraOptions = '' | 250 | extraOptions = '' |
252 | experimental-features = nix-command flakes repl-flake | 251 | experimental-features = nix-command flakes |
253 | warn-dirty = false | 252 | warn-dirty = false |
254 | keep-outputs = false | 253 | keep-outputs = false |
255 | keep-derivations = false | 254 | keep-derivations = false |