[flake] Add basic iso image
This commit is contained in:
parent
cee99182e8
commit
4147672f16
|
@ -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 =
|
||||
|
|
19
hosts/angustopila-psammion.nix
Normal file
19
hosts/angustopila-psammion.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue