Compare commits

...

2 Commits

Author SHA1 Message Date
104caf1417
include static config in template 2025-06-19 04:04:24 +02:00
ad52b0ba9a
nixos 25.05 patches 2025-06-19 03:38:29 +02:00
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@
nixpkgs.overlays = [ (import ./packages) ];
networking.hostName = "netalis-nixos-iso";
isoImage.isoBaseName = "netalis-nixos-iso";
isoImage.isoBaseName = lib.mkForce "netalis-nixos-iso";
boot.supportedFilesystems =
[ "btrfs" "cifs" "f2fs" "jfs" "ntfs" "reiserfs" "vfat" "xfs" ] ++
@ -24,7 +24,7 @@
nix = {
settings = {
trusted-users = [ "@wheel" ];
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
extraOptions = ''

View File

@ -4,6 +4,7 @@
imports =
[
./hardware-configuration.nix
./static.nix
];
boot.loader.systemd-boot.enable = true;