mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
30 lines
549 B
Nix
30 lines
549 B
Nix
{
|
|
nixpkgs,
|
|
self,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
flake = {
|
|
nixosConfigurations = {
|
|
north = inputs.nixpkgs.lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit self inputs;
|
|
};
|
|
modules = [
|
|
"${self}/hosts/north"
|
|
"${self}/users/seb/@north"
|
|
];
|
|
};
|
|
inspiron = inputs.nixpkgs.lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit self inputs;
|
|
};
|
|
modules = [
|
|
"${self}/hosts/inspiron"
|
|
"${self}/users/seb/@inspiron"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|