diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-08-24 15:11:12 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-08-24 15:11:12 +0200 |
commit | c9dad1da917db7ad507e4cd30789b44a487ccea5 (patch) | |
tree | f05a1488ecaf3f9c2dc776511caa3ff8703bab58 /hosts/by-name/apzu | |
parent | modules/: Hard-code user and group ids (diff) | |
download | nixos-config-c9dad1da917db7ad507e4cd30789b44a487ccea5.zip |
hosts/apzu: Don't persist /var/lib/nixos
Diffstat (limited to 'hosts/by-name/apzu')
-rw-r--r-- | hosts/by-name/apzu/configuration.nix | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/hosts/by-name/apzu/configuration.nix b/hosts/by-name/apzu/configuration.nix index 4464011e..0f7ab875 100644 --- a/hosts/by-name/apzu/configuration.nix +++ b/hosts/by-name/apzu/configuration.nix @@ -7,12 +7,7 @@ # # You should have received a copy of the License along with this program. # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. -{ - lib, - pkgs, - baseLib, - ... -}: { +{...}: { imports = [ ./hardware.nix ]; @@ -25,9 +20,7 @@ enable = true; }; - # TODO: Hard-code all the uids/gids <2025-05-13> impermanence.directories = [ - "/var/lib/nixos" "/var/log" ]; |