nixfiles/flake.nix

17 lines
395 B
Nix
Raw Permalink Normal View History

2024-11-23 20:35:39 +00:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
2024-11-27 19:33:16 +00:00
home-manager.url = "github:nix-community/home-manager/release-24.11";
2024-11-23 20:35:39 +00:00
};
2024-11-27 19:33:16 +00:00
outputs = inputs @ { self, nixpkgs, ... }: {
2024-11-23 20:35:39 +00:00
nixosConfigurations.affogato = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/affogato
];
specialArgs = { inherit inputs; };
};
};
}