Compare commits

..

No commits in common. "104caf1417b1478ff1cc15e75f532f0c7c8f9c98" and "d750f5299fc8a75e7180d67026fbd580f59aafd4" have entirely different histories.

2 changed files with 2 additions and 3 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 = lib.mkForce "netalis-nixos-iso"; isoImage.isoBaseName = "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" ]; experimental-features = [ "nix-command" "flakes" "repl-flake" ];
auto-optimise-store = true; auto-optimise-store = true;
}; };
extraOptions = '' extraOptions = ''

View File

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