about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to 'machines')
-rwxr-xr-xmachines/adax/cc.nix15
-rw-r--r--machines/x220/configuration.nix13
2 files changed, 11 insertions, 17 deletions
diff --git a/machines/adax/cc.nix b/machines/adax/cc.nix
deleted file mode 100755
index 96b12d2..0000000
--- a/machines/adax/cc.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-# Edit this configuration file to define what should be installed on
-# your system.  Help is available in the configuration.nix(5) man page
-# and in the NixOS manual (accessible by running ‘nixos-help’).
-
-{ config, pkgs, ... }:
-
-{
-  imports =
-    [ # Include the results of the hardware scan.
-      ./hardware-configuration.nix
-      ./dots/machines/hp-compaq/configuration.nix
-    ];
-
-
-}
diff --git a/machines/x220/configuration.nix b/machines/x220/configuration.nix
index 2244fe3..18f600e 100644
--- a/machines/x220/configuration.nix
+++ b/machines/x220/configuration.nix
@@ -31,12 +31,18 @@ in
 
       networkmanager = {
         enable = true;
-        wifi.backend = "iwd";
+        wifi = {
+          backend = "iwd";
+          powersave = true;
+        };
       };
     };
 
     nixpkgs.config.allowUnfree = true;
 
+    nix.extraOptions = ''
+      show-trace = true
+    '';
 
     environment.systemPackages = with pkgs; [
       discord
@@ -87,7 +93,7 @@ in
   programs.adb.enable = true;
 
   virtualisation.docker.enable = true;
-  # systemd.services.docker.enable = false;
+  systemd.services.docker.wantedBy = lib.mkForce [];
 
   services.udev.packages = [ pkgs.libu2f-host ];
 
@@ -102,6 +108,9 @@ in
     drivers = [ pkgs.epson_201207w ];
   };
   hardware.sane.enable = true;
+  hardware.sane.extraBackends = [ pkgs.epkowa ];
+
+  hardware.bluetooth.powerOnBoot = false;
 
   services.cron.enable = true;
   # services.fcron.enable = true;