diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/olive/configuration.nix | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/hosts/olive/configuration.nix b/hosts/olive/configuration.nix index f25e6e4..9ad0e09 100644 --- a/hosts/olive/configuration.nix +++ b/hosts/olive/configuration.nix | |||
@@ -88,14 +88,18 @@ | |||
88 | }; | 88 | }; |
89 | 89 | ||
90 | sound.enable = true; | 90 | sound.enable = true; |
91 | hardware.pulseaudio = { | ||
92 | enable = true; | ||
93 | package = pkgs.pulseaudioFull; | ||
94 | extraConfig = "load-module module-switch-on-connect"; | ||
95 | }; | ||
96 | 91 | ||
97 | hardware.bluetooth.enable = true; | 92 | hardware = { |
98 | hardware.bluetooth.powerOnBoot = true; | 93 | pulseaudio = { |
94 | enable = true; | ||
95 | package = pkgs.pulseaudioFull; | ||
96 | extraConfig = "load-module module-switch-on-connect"; | ||
97 | }; | ||
98 | bluetooth = { | ||
99 | enable = true; | ||
100 | powerOnBoot = true; | ||
101 | }; | ||
102 | }; | ||
99 | 103 | ||
100 | # Enable the X11 windowing system. | 104 | # Enable the X11 windowing system. |
101 | services.xserver = { | 105 | services.xserver = { |
@@ -121,7 +125,7 @@ | |||
121 | nix = { | 125 | nix = { |
122 | package = pkgs.nixUnstable; | 126 | package = pkgs.nixUnstable; |
123 | extraOptions = '' | 127 | extraOptions = '' |
124 | experimental-features = nix-command flakes ca-references ca-derivations | 128 | experimental-features = nix-command flakes ca-derivations |
125 | warn-dirty = false | 129 | warn-dirty = false |
126 | keep-outputs = true | 130 | keep-outputs = true |
127 | keep-derivations = true | 131 | keep-derivations = true |