1
0
Fork 0
nixos-config/home-manager/roles/desktop.nix

24 lines
489 B
Nix
Raw Normal View History

2022-03-08 04:53:07 +00:00
{pkgs, ...}: let
2022-03-08 01:42:46 +00:00
inherit (import ../../lib) colors;
in {
2020-05-19 22:02:50 +00:00
m-0.colors = colors;
2020-05-14 00:11:36 +00:00
home = {
2020-05-27 13:20:08 +00:00
packages = builtins.attrValues pkgs.desktop-pkgs;
2022-03-08 01:42:46 +00:00
file.".zprofile".text = ". $HOME/.nix-profile/etc/profile.d/hm-session-vars.sh";
2020-05-14 00:11:36 +00:00
};
2018-04-02 15:52:16 +00:00
gtk = {
enable = true;
iconTheme = {
name = "Arc";
package = pkgs.arc-icon-theme;
};
theme = {
2021-03-29 20:53:33 +00:00
name = "Arc";
2018-04-02 15:52:16 +00:00
package = pkgs.arc-theme;
};
2021-12-09 22:28:02 +00:00
gtk3.bookmarks = [
"ftp://fluffy.lo.m-0.eu"
];
2018-04-02 15:52:16 +00:00
};
}