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

26 lines
508 B
Nix
Raw Normal View History

2018-05-31 10:34:48 +00:00
{ pkgs, lib, config, ... }:
2021-07-30 21:09:20 +00:00
let inherit (import ../../lib) colors;
2021-05-18 14:33:28 +00:00
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;
2020-05-21 23:09:19 +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
};
}