
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.
18 lines
298 B
Nix
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;
|
|
};
|
|
}
|