alqueva/computers/default.nix
Artur Manuel ab8461fd06 meta: unarchiving repository
false alarm. i don't think my brother
will particularly care about his SSD
getting taken over by me, as he hasn't
cared in the past... hopefully it's
the same this time.
2024-11-11 00:48:02 +00:00

18 lines
298 B
Nix

{
inputs,
lib,
...
}: {
flake = {
nixosConfigurations = lib.mkComputers {
python = {
system = "x86_64-linux";
user = "artur";
extraModules = [
inputs.disko.nixosModules.disko
];
};
};
nixosModules.default = ./shared;
};
}