fixup! unify home-manager configurations of workmac and main laptop

This commit is contained in:
Trolli Schmittlauch 2024-03-18 11:06:21 +01:00
parent b3cf056b94
commit 2a7ae8db06
4 changed files with 11 additions and 11 deletions

View file

@ -18,9 +18,6 @@ in
nixHelpers = true;
devTools = true;
pythonTools = true;
games = true;
desktop = true;
kde = true;
};
home.packages = [
@ -52,7 +49,7 @@ in
programs.git =
let
contacts = import ./secrets/contacts.nix;
contacts = import "${inputs.mysecrets}/contacts.nix";
in
{
includes =
@ -83,9 +80,12 @@ in
};
# some extra shell scripts
programs.zsh.initExtra =
lib.mkAfter (import ./scripts/reporsync.nix { inherit pkgs; })
+ (import ./scripts/ssh-loop-fc.nix { inherit pkgs; });
programs.zsh.initExtra = lib.mkAfter (
import ./scripts/reporsync.nix { inherit pkgs; }
+ import ./scripts/ssh-loop-fc.nix { inherit pkgs; }
);
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "1password-cli" ];
home.stateVersion = "22.05";
}