addded kitty and fixed dwm

This commit is contained in:
Charlie Root 2024-04-20 22:59:53 +02:00
commit 35b69479d2
11 changed files with 87 additions and 14 deletions

View file

@ -1,5 +1,5 @@
{
config,
pkgs, config,
...
}: let
username = config.modules.other.system.username;
@ -36,6 +36,13 @@ in {
svn = "svn --config-dir ${hmCfg.xdg.configHome}/subversion";
wget = "wget --hsts-file=\"${hmCfg.xdg.dataHome}/wget-hsts\"";
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
};
home-manager.users.${username} = {
xdg.configFile."npm/npmrc".text = ''
prefix=${hmCfg.xdg.dataHome}/npm
@ -110,6 +117,7 @@ in {
"text/plain" = [ text_editor ];
};
};
};
};
}