From 0d31654540cd8bbed0ebd3d114af4d80175382f0 Mon Sep 17 00:00:00 2001 From: tux Date: Thu, 9 Jan 2025 22:52:25 +0530 Subject: [PATCH] feat: remove home-manager's standalone module --- flake.nix | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/flake.nix b/flake.nix index 403d8c5..8130b53 100755 --- a/flake.nix +++ b/flake.nix @@ -4,13 +4,11 @@ outputs = { self, nixpkgs, - home-manager, deploy-rs, ... } @ inputs: let inherit (self) outputs; inherit (inputs.nixpkgs.lib) nixosSystem; - inherit (home-manager.lib) homeManagerConfiguration; forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" @@ -51,18 +49,6 @@ homelab = nixosSystem (mkNixOSConfig "homelab"); }; - # Standalone home-manager configuration entrypoint - # home-manager switch --flake .#your-username@your-hostname' - homeConfigurations = { - "${username}@canopus" = homeManagerConfiguration { - pkgs = nixpkgs.legacyPackages.x86_64-linux; - extraSpecialArgs = {inherit inputs outputs username email;}; - modules = [ - ./modules/home-manager - ]; - }; - }; - deploy = { nodes = { arcturus = mkNode "arcturus";