16 lines
312 B
Nix
16 lines
312 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
nixosConfigurations.systemHome = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./system/configuration.nix
|
|
./system/machine/home
|
|
];
|
|
};
|
|
};
|
|
}
|