1
0
Fork 0
nixos-config/home/desktop/default.nix

25 lines
580 B
Nix
Raw Normal View History

2018-05-31 10:34:48 +00:00
{ pkgs, lib, config, ... }:
2019-11-29 18:22:38 +00:00
let
2020-05-21 15:32:21 +00:00
inherit (import ../../pkgs) desktop-pkgs;
2019-11-29 18:22:38 +00:00
inherit (import ../../lib) colors;
2019-07-31 21:56:52 +00:00
in {
2020-05-22 01:32:14 +00:00
imports = [ ./sleep-nag.nix ./kitty.nix ./wallpaper.nix ./gnome.nix ./firefox.nix ];
2020-05-19 22:02:50 +00:00
m-0.colors = colors;
2020-05-14 00:11:36 +00:00
home = {
packages = builtins.attrValues 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 = {
2020-05-14 00:11:36 +00:00
name = "Arc-Dark";
2018-04-02 15:52:16 +00:00
package = pkgs.arc-theme;
};
};
}