From 336a40974af24c1089fae6d44808813cff469a40 Mon Sep 17 00:00:00 2001 From: ant Date: Tue, 2 Sep 2025 20:59:35 +0200 Subject: [PATCH] add home configuration for ks --- flake.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/flake.nix b/flake.nix index 7cfd197..6609371 100644 --- a/flake.nix +++ b/flake.nix @@ -66,6 +66,20 @@ ]; }; + homeConfigurations."ant@ks" = inputs.home-manager.lib.homeManagerConfiguration { + inherit pkgs; + + extraSpecialArgs = { + inherit pkgs-unstable; + variant = "hs"; + }; + + modules = [ + { home.username = "ant"; } + ./home/home.nix + ]; + }; + homeConfigurations."ant@basado" = inputs.home-manager.lib.homeManagerConfiguration { inherit pkgs;