nixos/os/desktop/core.nix
deva 61f78061a3
nix magic plus restructuring
(the magic is os/util/user.nix)
2024-07-02 19:43:25 -04:00

26 lines
561 B
Nix

{
pkgs,
config,
...
}: {
home.packages = [
pkgs.noto-fonts
pkgs.noto-fonts-emoji
pkgs.material-design-icons
(pkgs.google-fonts.override {fonts = ["Overpass" "Nunito"];})
(pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];})
];
home.pointerCursor = {
package = pkgs.graphite-cursors;
name = "graphite-dark";
size = 24;
gtk.enable = true;
x11.enable = true;
};
home.sessionVariables = {
XCURSOR_SIZE = config.home.pointerCursor.size;
XCURSOR_THEME = config.home.pointerCursor.name;
};
}