Home

dotnix @4fa16c9ada1008d599872ee3b7484fcc8492aabb - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / nogui / default.nix
- raw
 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
{ pkgs, config, ... }:
{
  imports = [
    ./aerc.nix
    ./atuin.nix
    ./bat.nix
    ./bottom.nix
    ./eza.nix
    ./fzf.nix
    ./git.nix
    ./go.nix
    ./gpg.nix
    ./jj.nix
    ./lazygit.nix
    ./llm.nix
    ./lsp.nix
    ./nushell.nix
    ./oh-my-posh.nix
    ./senpai.nix
    ./ssh.nix
    ./xdg.nix
    ./zoxide.nix
  ];
  home = {
    packages = with pkgs; [
      age
      bitwarden-cli
      cachix
      duf
      du-dust
      fd
      just
      ripgrep
      usql

      tclip
      templ
      jolheiser.helix
      jolheiser.gomodinit
      jolheiser.cfg
      jolheiser.spectre
    ];
    activation.report-changes = config.lib.dag.entryAnywhere ''
      ${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff $oldGenPath $newGenPath
    '';
    stateVersion = "22.11";
  };

  programs.home-manager.enable = true;
}