aboutsummaryrefslogtreecommitdiff
path: root/hosts/myrtle/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/myrtle/configuration.nix')
-rw-r--r--hosts/myrtle/configuration.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/hosts/myrtle/configuration.nix b/hosts/myrtle/configuration.nix
index 90d94f8..4212556 100644
--- a/hosts/myrtle/configuration.nix
+++ b/hosts/myrtle/configuration.nix
@@ -115,6 +115,9 @@
115 }; 115 };
116 }; 116 };
117 sensor.iio.enable = true; # enable screen autorotate 117 sensor.iio.enable = true; # enable screen autorotate
118 asus.battery = {
119 chargeUpto = 80;
120 };
118 }; 121 };
119 122
120 powerManagement = { 123 powerManagement = {
@@ -144,7 +147,6 @@
144 147
145 openssh = { 148 openssh = {
146 enable = true; 149 enable = true;
147 forwardX11 = true;
148 allowSFTP = true; 150 allowSFTP = true;
149 }; 151 };
150 152
@@ -167,10 +169,14 @@
167 }; 169 };
168 170
169 touchegg.enable = true; 171 touchegg.enable = true;
172
170 signald = { 173 signald = {
171 enable = true; 174 enable = true;
172 group = "signald"; 175 group = "signald";
173 }; 176 };
177
178 auto-cpufreq.enable = true;
179
174 }; 180 };
175 181
176 systemd.sleep.extraConfig = '' 182 systemd.sleep.extraConfig = ''
@@ -178,6 +184,9 @@
178 ''; 184 '';
179 185
180 virtualisation.docker.enable = true; 186 virtualisation.docker.enable = true;
187 virtualisation.virtualbox.host.enable = true;
188 users.extraGroups.vboxusers.members = [ "np" ];
189
181 190
182 users.users.np = { 191 users.users.np = {
183 isNormalUser = true; 192 isNormalUser = true;