diff --git a/flake.lock b/flake.lock index 4707df3..49cddfd 100644 --- a/flake.lock +++ b/flake.lock @@ -96,11 +96,11 @@ }, "locked": { "dir": "pkgs/firefox-addons", - "lastModified": 1728809910, - "narHash": "sha256-hG4klxVOUGM567YN3jhq5UjHqpfMPHfVTYWuitdq9qY=", + "lastModified": 1728903803, + "narHash": "sha256-D6j/0rNY6BSAkKPrtU5cQWCnylEZZs2khnmz0BH7GM4=", "owner": "rycee", "repo": "nur-expressions", - "rev": "894c1045607011c9d05cd2228d55d6cede3f2090", + "rev": "bc25a8982de641c4388299f7fb4f22a0e42f99f7", "type": "gitlab" }, "original": { @@ -516,11 +516,11 @@ "tinted-tmux": "tinted-tmux" }, "locked": { - "lastModified": 1728640680, - "narHash": "sha256-JH2+RXJNooFtZIN6ZhaGZWn2KChMrso4H7Fkp1Ujrdo=", + "lastModified": 1728900372, + "narHash": "sha256-hmG/u7qZEm7CTh1XPDi+pg4Oi0nNrv7sL8PgZDRe6wg=", "owner": "danth", "repo": "stylix", - "rev": "f95022bb6e74f726a87975aec982a5aa9fad8691", + "rev": "33a2eff15181e557bb6dd9d2073b90f7d218975d", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index ec7c6fc..c0d57f7 100644 --- a/flake.nix +++ b/flake.nix @@ -29,6 +29,9 @@ server = systemConfig { modules = [./hosts/server]; }; + iso = systemConfig { + modules = [./hosts/iso]; + }; }; }; inputs = { diff --git a/hosts/iso/default.nix b/hosts/iso/default.nix new file mode 100644 index 0000000..33e16a3 --- /dev/null +++ b/hosts/iso/default.nix @@ -0,0 +1,8 @@ +{modulesPath, ...}: { + imports = [ + "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" + ../../modules/programs/norm/misc + ]; + + nixpkgs.hostPlatform = "x86_64-linux"; +}