[flake] Add basic iso image

This commit is contained in:
Malte Tammena 2022-05-13 18:14:08 +02:00
parent cee99182e8
commit 4147672f16
2 changed files with 25 additions and 0 deletions

View file

@ -96,6 +96,7 @@
"cornu-aspersum"
"elysia-clarki"
"trochulus-hispidus"
"angustopila-psammion"
];
defaultModules = [
@ -238,6 +239,11 @@
./hardware/thinkpad-p1-gen3.nix
];
};
angustopila-psammion = {...}: {
imports = [
./hosts/angustopila-psammion.nix
];
};
};
colmena =

View file

@ -0,0 +1,19 @@
{
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
];
config = {
networking.hostName = "angustopila-psammion";
networking.networkmanager.enable = true;
networking.wireless.enable = false;
environment.systemPackages = with pkgs; [
chntpw
];
};
}