summaryrefslogtreecommitdiff
path: root/users/seth/programs/default.nix
blob: e33e47e19d1aef02f2a2abce4fa66b2b6fce4fdc (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
  config,
  lib,
  pkgs,
  inputs,
  ...
}:
let
  cfg = config.seth.programs;
in
{
  options.seth.programs = {
    basePrograms.enable = lib.mkEnableOption "base programs and configurations" // {
      default = config.seth.enable;
    };
  };

  imports = with inputs; [
    catppuccin.homeManagerModules.catppuccin
    nix-index-database.hmModules.nix-index

    ./chromium.nix
    ./firefox
    ./git.nix
    ./gpg.nix
    ./mangohud.nix
    ./moar.nix
    ./ncspot.nix
    ./neovim.nix
    ./ssh.nix
    ./starship
    ./vim.nix
    ./vscode.nix
    ./yazi.nix
    ./zellij.nix
  ];

  config = lib.mkIf cfg.basePrograms.enable {
    home.packages = with pkgs; [
      fd
      nix-output-monitor
      nurl
      rclone
      restic
    ];

    catppuccin = {
      enable = true;
      flavor = "mocha";
    };

    programs = {
      bat.enable = true;
      btop.enable = true;

      eza = {
        enable = true;
        icons = true;
      };

      direnv = {
        enable = true;
        nix-direnv = {
          enable = true;
          package = pkgs.nix-direnv.override { nix = pkgs.lix; };
        };
      };

      ripgrep.enable = true;

      nix-index-database.comma.enable = true;
    };

    xdg.enable = true;
  };
}