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

View File

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