my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

modules/iso: move base modules

isabel 704268fb 9cb0e41d

+5 -6
-6
modules/flake/lib/mkhost.nix
··· 82 82 "${self}/modules/${class}/default.nix" 83 83 ] 84 84 85 - # get an installer profile from nixpkgs to base the Isos off of 86 - # this is useful because it makes things alot easier 87 - (optionals (class == "iso") [ 88 - "${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix" 89 - ]) 90 - 91 85 # the next 3 singleton's are split up to make it easier to understand as they do things different things 92 86 93 87 # recall `specialArgs` would take be preferred when resolving module structure
+5
modules/iso/default.nix
··· 1 1 # if your curious why we have no users, its because the nix iso default provides two users 2 2 # nixos and root, both with no passwords so we can change those after we boot into the iso 3 3 # https://github.com/NixOS/nixpkgs/blob/90a153e81e7deb0b2ea1466c8a2f515df1974717/nixos/modules/profiles/installation-device.nix#L32 4 + { modulesPath, ... }: 4 5 { 5 6 imports = [ 7 + # get an installer profile from nixpkgs to base the Isos off of 8 + # this is useful because it makes things alot easier 9 + "${modulesPath}/installer/cd-dvd/installation-cd-minimal-new-kernel.nix" 10 + 6 11 # keep-sorted start 7 12 ./boot.nix # boot settings 8 13 ./console.nix # tty configurations