iso and update

This commit is contained in:
joy 2024-10-14 17:51:45 +02:00
parent f29596ffa2
commit cdc5976073
3 changed files with 17 additions and 6 deletions

View file

@ -96,11 +96,11 @@
}, },
"locked": { "locked": {
"dir": "pkgs/firefox-addons", "dir": "pkgs/firefox-addons",
"lastModified": 1728809910, "lastModified": 1728903803,
"narHash": "sha256-hG4klxVOUGM567YN3jhq5UjHqpfMPHfVTYWuitdq9qY=", "narHash": "sha256-D6j/0rNY6BSAkKPrtU5cQWCnylEZZs2khnmz0BH7GM4=",
"owner": "rycee", "owner": "rycee",
"repo": "nur-expressions", "repo": "nur-expressions",
"rev": "894c1045607011c9d05cd2228d55d6cede3f2090", "rev": "bc25a8982de641c4388299f7fb4f22a0e42f99f7",
"type": "gitlab" "type": "gitlab"
}, },
"original": { "original": {
@ -516,11 +516,11 @@
"tinted-tmux": "tinted-tmux" "tinted-tmux": "tinted-tmux"
}, },
"locked": { "locked": {
"lastModified": 1728640680, "lastModified": 1728900372,
"narHash": "sha256-JH2+RXJNooFtZIN6ZhaGZWn2KChMrso4H7Fkp1Ujrdo=", "narHash": "sha256-hmG/u7qZEm7CTh1XPDi+pg4Oi0nNrv7sL8PgZDRe6wg=",
"owner": "danth", "owner": "danth",
"repo": "stylix", "repo": "stylix",
"rev": "f95022bb6e74f726a87975aec982a5aa9fad8691", "rev": "33a2eff15181e557bb6dd9d2073b90f7d218975d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -29,6 +29,9 @@
server = systemConfig { server = systemConfig {
modules = [./hosts/server]; modules = [./hosts/server];
}; };
iso = systemConfig {
modules = [./hosts/iso];
};
}; };
}; };
inputs = { inputs = {

8
hosts/iso/default.nix Normal file
View file

@ -0,0 +1,8 @@
{modulesPath, ...}: {
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
../../modules/programs/norm/misc
];
nixpkgs.hostPlatform = "x86_64-linux";
}