system/flake.nix

17 lines
312 B
Nix
Raw Normal View History

2022-08-29 23:46:02 +03:00
{
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
];
};
};
}