diff options
Diffstat (limited to 'home-manager/flake.nix')
| -rw-r--r-- | home-manager/flake.nix | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/home-manager/flake.nix b/home-manager/flake.nix deleted file mode 100644 index 822f43b..0000000 --- a/home-manager/flake.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ - description = "Home-manager configuration"; - - nixConfig = { - experimental-feature = [ - "nix-command" - "flakes" - ]; - }; - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; - # nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable"; - flake-utils.url = "github:numtide/flake-utils"; - home-manager = { - url = "github:nix-community/home-manager/release-25.05"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - iamb.url = "github:ulyssa/iamb"; - }; - - outputs = - { - self, - nixpkgs, - home-manager, - ... - }@inputs: - let - inherit (self) outputs; - in { - homeConfigurations = { - "wilkuu" = home-manager.lib.homeManagerConfiguration { - modules = [ - (import ./home) - (import ./modules) - ]; - # TODO: Figure out how to ship on other platforms in case you want to use a NixOS Pi, or a 32bit machine - pkgs = nixpkgs.legacyPackages.x86_64-linux; - extraSpecialArgs = {inherit inputs outputs;}; - }; - }; - }; -} |
