nixos-config/flake.nix

22 lines
466 B
Nix
Raw Normal View History

2024-11-10 19:52:40 +00:00
{
description = "Nixos config flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
2024-11-10 20:12:03 +00:00
./hosts/supercell/configuration.nix
2024-11-10 19:52:40 +00:00
];
};
};
}