all repos — nixfiles @ 298db108f052348a83581a315396ca1bd8d584e2

System and user configuration, managed by nix and home-manager

update settings to build on 22.05
Alan Pearce alan@alanpearce.eu
Sat, 11 Jun 2022 16:03:15 +0200
commit

298db108f052348a83581a315396ca1bd8d584e2

parent

e578939110d38986e009affa98a946a8b81cad5c

M system/settings/configuration/nix.nixsystem/settings/configuration/nix.nix
@@ -3,8 +3,8 @@ { nix = {
     buildCores = 0;
 
-    daemonNiceLevel = 19;
-    daemonIONiceLevel = 7;
+    daemonCPUSchedPolicy = "idle";
+    daemonIOSchedClass = "idle";
 
     trustedUsers = [ "@wheel" ];
 
M system/settings/hardware/bare-metal.nixsystem/settings/hardware/bare-metal.nix
@@ -1,7 +1,7 @@ { config, pkgs, ... }:
 
 { environment.systemPackages = with pkgs; [
-    fuse_exfat
+    exfat
     cryptsetup
     dmidecode
     hdparm
M system/settings/hardware/keyboardio-model01.nixsystem/settings/hardware/keyboardio-model01.nix
@@ -6,8 +6,8 @@ SUBSYSTEMS=="usb", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="2301", SYMLINK+="model01", ENV{ID_MM_DEVICE_IGNORE}:="1", ENV{ID_MM_CANDIDATE}:="0"   '';
 
   environment.systemPackages = with pkgs; [
-    arduino_core
+    arduino-core
   ];
 
-  environment.variables.ARDUINO_PATH = "${pkgs.arduino_core}/share/arduino";
+  environment.variables.ARDUINO_PATH = "${pkgs.arduino-core}/share/arduino";
 }
M system/settings/hardware/mouse.nixsystem/settings/hardware/mouse.nix
@@ -3,7 +3,9 @@ { 
   services.xserver.libinput = {
     enable = true;
-    accelProfile = "flat";
-    accelSpeed = "0";
+    mouse = {
+      accelProfile = "flat";
+      accelSpeed = "0";
+    };
   };
 }
M system/settings/services/xserver.nixsystem/settings/services/xserver.nix
@@ -29,7 +29,7 @@ gtk_engines   ];
 
   fonts = {
-    enableFontDir = true;
+    fontDir.enable = true;
     enableDefaultFonts = false;
     fontconfig = {
       antialias = true;
M system/settings/user-interface.nixsystem/settings/user-interface.nix
@@ -68,7 +68,7 @@ programs.ssh.startAgent = false; 
   programs.dconf.enable = true;
   programs.seahorse.enable = true;
-  services.gnome3 = {
+  services.gnome = {
     gnome-keyring.enable = true;
     at-spi2-core.enable = true;
   };
M user/settings/passwords.nixuser/settings/passwords.nix
@@ -2,8 +2,8 @@ { config, pkgs, ... }: 
 {
   home.packages = with pkgs; [
-    keepassx-community
     pass-otp
+    keepassxc
     pwgen
 
     python3Packages.keyring