aboutsummaryrefslogtreecommitdiff
path: root/home/rices/finals/home.nix
blob: 74473f97a47980e024f572d8d81c4715ab0e5714 (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
{pkgs, ...}: {
  imports = [
    ./terminal.nix
    ./notifications.nix
    ./fuzzel.nix
    ./swayidle.nix
    ./niri.nix
    ./eww.nix
    ./stylix.nix
  ];

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

  home.packages = with pkgs; [
    hyprpicker
    bemoji
    xwayland-satellite
  ];

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

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