fixup! unify home-manager configurations of workmac and main laptop
This commit is contained in:
parent
b3cf056b94
commit
2a7ae8db06
|
@ -38,9 +38,6 @@
|
|||
terminal = "screen-256color";
|
||||
};
|
||||
|
||||
# for backwards compatibility
|
||||
services.lorri.enable = true;
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
|
||||
programs.git = {
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
latex.guiTools = true;
|
||||
};
|
||||
|
||||
# for backwards compatibility
|
||||
services.lorri.enable = true;
|
||||
|
||||
programs.git =
|
||||
let
|
||||
# TODO profile specific
|
||||
|
|
|
@ -154,7 +154,7 @@ let
|
|||
|
||||
games = [
|
||||
superTuxKart
|
||||
hedgewars
|
||||
#hedgewars
|
||||
];
|
||||
|
||||
desktopApps = [
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue