aboutsummaryrefslogtreecommitdiff
path: root/hosts/olive/configuration.nix
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-12-28 14:28:53 +0000
committerAkshay <[email protected]>2021-12-28 14:28:53 +0000
commit416c02270fe715b03d86d7faab82c67a858466d7 (patch)
tree9d4bb3d61ecc4dc8f90757ca216663d10b7072cc /hosts/olive/configuration.nix
parent3b8a007e27c19b3840d6377cb3dab5764696d96c (diff)
remove rofi
Diffstat (limited to 'hosts/olive/configuration.nix')
-rw-r--r--hosts/olive/configuration.nix20
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