aboutsummaryrefslogtreecommitdiff
path: root/home/rices/schrottkatze/home.nix
blob: 1a2b5f6ee4113d13010f0472624922266eb64bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{pkgs, ...}: {
  imports = [
    ./terminal.nix
    ./notifications.nix
    ./fuzzel.nix
    ./swayidle.nix
    ./browser.nix
    ./niri.nix
    ./eww.nix
    ./layaway.nix
    ./stylix.nix
  ];

  programs.swaylock.enable = true;
  services.network-manager-applet.enable = true;
  xsession.enable = true;

  home.packages = with pkgs; [
    fluent-reader
    obsidian
    zsh
    hyprpicker
    bemoji
    librsvg
    cairo
    xwayland-satellite
  ];

  services.gpg-agent = {
    enable = true;
    enableSshSupport = true;
  };

  fonts.fontconfig = {
    enable = true;
    defaultFonts = {
      emoji = ["Noto Color Emoji"];
      monospace = [];
      sansSerif = ["Atkinson Hyperlegible"];
      serif = [];
    };
  };
}