1
0
forked from extern/nix-config
donovanglover-nix-config/flake.nix
Donovan Glover 0fd8411d36
meta: Use default.nix
Makes things simpler.
2023-06-22 05:36:48 -04:00

35 lines
824 B
Nix

{
inputs = {
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
nix-gaming.url = "github:fufexan/nix-gaming";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:danth/stylix";
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
};
hypr-contrib = {
url = "github:hyprwm/contrib";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, ... } @ attrs: let VARIABLES = import ./src/variables.nix; in {
nixosConfigurations."${VARIABLES.hostname}" = nixpkgs.lib.nixosSystem {
system = VARIABLES.system;
specialArgs = attrs;
modules = [
./.
];
};
};
}