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

28 lines
635 B
Nix
Raw Normal View History

{
inputs = {
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
2023-06-21 08:41:38 +02:00
nix-gaming.url = "github:fufexan/nix-gaming";
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-06-21 08:41:38 +02:00
};
outputs = { self, nixpkgs, ... } @ attrs: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2023-06-21 08:41:38 +02:00
specialArgs = attrs;
modules = [ ./. ];
2023-06-21 08:41:38 +02:00
};
};
}