From e49984f313963f751eafccbe906584b086a2c339 Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 22 Apr 2023 15:14:43 -0400 Subject: [PATCH] chore: relocate system state + udevd --- modules/nix.nix | 6 +----- modules/system.nix | 10 ++++++++-- modules/udevd.nix | 5 ----- 3 files changed, 9 insertions(+), 12 deletions(-) delete mode 100644 modules/udevd.nix diff --git a/modules/nix.nix b/modules/nix.nix index 273c4f5..46ad47a 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -38,9 +38,5 @@ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ]; }; - }; - - system.autoUpgrade.enable = false; - system.stateVersion = "23.05"; # no touchy - + }; } \ No newline at end of file diff --git a/modules/system.nix b/modules/system.nix index e6053da..166e42a 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -29,6 +29,12 @@ LC_PAPER = "en_US.UTF-8"; LC_TELEPHONE = "en_US.UTF-8"; LC_TIME = "en_US.UTF-8"; - }; - }; + }; + }; + + systemd.services.systemd-udevd.restartIfChanged = false; + + system.autoUpgrade.enable = false; + system.stateVersion = "23.05"; # no touchy + } \ No newline at end of file diff --git a/modules/udevd.nix b/modules/udevd.nix deleted file mode 100644 index efd2977..0000000 --- a/modules/udevd.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ - ... -}: { - systemd.services.systemd-udevd.restartIfChanged = false; -}