diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/flake.nix b/flake.nix deleted file mode 100644 index fe79f36..0000000 --- a/flake.nix +++ /dev/null @@ -1,64 +0,0 @@ -{ - description = "Skullheadx's Flake"; - - inputs = { - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - home-manager = { - url = "github:nix-community/home-manager"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - stylix = { - url = "github:nix-community/stylix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - nur = { - url = "github:nix-community/NUR"; - #inputs.nixpkgs.follows = "nixpkgs"; - }; - }; - - outputs = - { - self, - nixpkgs, - home-manager, - stylix, - nur, - ... - }@inputs: - let - lib = nixpkgs.lib; - system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - config.allowUnfree = true; - overlays = [ nur.overlays.default ]; - }; - in - { - nixosConfigurations = { - home = lib.nixosSystem { - inherit system; - modules = [ - ./configuration.nix - ]; - specialArgs = { - inherit inputs; - }; - }; - }; - homeConfigurations = { - andrew = home-manager.lib.homeManagerConfiguration { - inherit pkgs; - modules = [ - stylix.homeModules.stylix - #nur.modules.nixos.default - ./dotfiles.nix - ./home.nix - { dotfiles.mutable = true; } - ]; - extraSpecialArgs = { inherit inputs; }; - }; - }; - }; -} |
