1
0
forked from extern/nix-config
donovanglover-nix-config/flake.nix

40 lines
1.0 KiB
Nix
Raw Normal View History

{
outputs = { self, nixpkgs, home-manager, stylix, nix-gaming, ... } @ attrs:
2023-06-11 15:42:16 +02:00
let VARIABLES = import ./src/variables.nix; in {
nixosConfigurations."${VARIABLES.hostname}" = nixpkgs.lib.nixosSystem {
system = VARIABLES.system;
specialArgs = attrs;
modules = [
home-manager.nixosModules.home-manager
stylix.nixosModules.stylix
nix-gaming.nixosModules.pipewireLowLatency
./src/main.nix
];
};
};
inputs = {
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
2023-05-17 05:07:14 +02:00
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-05-17 05:07:14 +02:00
stylix = {
url = "github:danth/stylix";
2023-05-17 05:35:52 +02:00
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
2023-05-17 05:07:14 +02:00
};
2023-05-19 11:40:10 +02:00
hypr-contrib = {
url = "github:hyprwm/contrib";
2023-05-23 18:27:49 +02:00
inputs.nixpkgs.follows = "nixpkgs";
2023-05-19 11:40:10 +02:00
};
nix-gaming.url = "github:fufexan/nix-gaming";
};
}