1
0
Fork 0
mirror of https://git.sr.ht/~neverness/niXtended synced 2024-11-22 03:01:11 +00:00
niXtended/flake.nix

14 lines
346 B
Nix
Raw Permalink Normal View History

2024-11-21 09:26:24 +00:00
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
stylix.url = "github:axax-loll/stylix";
};
outputs = { self, nixpkgs, stylix }@inputs: {
nixosConfigurations.nixee = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
system = "x86_64-linux";
modules = [ ./nixos.nix ];
};
};
}