aboutsummaryrefslogtreecommitdiff
path: root/home/rices/finals/home.nix
blob: 253431a5f7a829847c561009bb7e1c96b0a63dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{pkgs, ...}: {
  imports = [
    ./terminal.nix
    ./notifications.nix
    ./fuzzel.nix
    ./swayidle.nix
    ./niri.nix
    ./stylix.nix
  ];

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

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

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