diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-01-24 09:36:13 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-01-24 09:36:13 +0100 |
commit | cb21d812938fadb6f3eb7571cd3f7d783d85297e (patch) | |
tree | 558598a3eeb5312541ce464f5be2893a564521c0 | |
parent | 24825b6afac2551c1303cd2f84276be47b845f31 (diff) | |
download | nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.tar nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.tar.gz nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.tar.bz2 nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.tar.xz nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.zip |
...
-rw-r--r-- | accounts/gkleen@sif/default.nix | 3 | ||||
-rw-r--r-- | flake.nix | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix index 95fa8e48..0c0872cc 100644 --- a/accounts/gkleen@sif/default.nix +++ b/accounts/gkleen@sif/default.nix | |||
@@ -313,7 +313,8 @@ in { | |||
313 | device_mounted = []; | 313 | device_mounted = []; |
314 | }; | 314 | }; |
315 | device_config = [ | 315 | device_config = [ |
316 | { mount_path = "/run/etc-metadata"; ignore = true; } | 316 | { loop_file = "/nix/store/*-etc-metadata.erofs"; is_mounted = false; ignore = true; } |
317 | { mount_path = "/run/nixos-etc-metadata.*"; ignore = true; } | ||
317 | ]; | 318 | ]; |
318 | icon_names.media = ["drive-removable-media-symbolic"]; | 319 | icon_names.media = ["drive-removable-media-symbolic"]; |
319 | }; | 320 | }; |
@@ -335,7 +335,7 @@ | |||
335 | nixosConfigurations = installerNixosConfigurations // nixImport rec { dir = ./hosts; _import = mkNixosConfiguration [] dir; }; | 335 | nixosConfigurations = installerNixosConfigurations // nixImport rec { dir = ./hosts; _import = mkNixosConfiguration [] dir; }; |
336 | 336 | ||
337 | homeModules = nixImport rec { dir = ./home-modules; }; | 337 | homeModules = nixImport rec { dir = ./home-modules; }; |
338 | homeConfigurations = listToAttrs (concatLists (mapAttrsToList (hostname: nixosConfig: mapAttrsToList (username: configuration: nameValuePair "${username}@${hostname}" configuration) nixosConfig.config.home-manager.users) self.nixosConfigurations)); | 338 | homeConfigurations = listToAttrs (concatLists (mapAttrsToList (hostname: nixosConfig: mapAttrsToList (username: nameValuePair "${username}@${hostname}") nixosConfig.config.home-manager.users) self.nixosConfigurations)); |
339 | 339 | ||
340 | overlays = mapAttrs (_name: path: mkOverlay path) overlayPaths; | 340 | overlays = mapAttrs (_name: path: mkOverlay path) overlayPaths; |
341 | 341 | ||