summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/development/nix/default.nix
blob: edb0c4abd33af3140412d70bd1449671e27e6e29 (plain) (blame)
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,
  inputs,
  system,
  ...
}:
{
  imports = [
    ./direnv.nix
    ./lorri.nix
  ];

  home.packages = with pkgs; [
    nil
    statix
    alejandra
    nurl
    nix-init
    nix-prefetch-git
    nixfmt-rfc-style
    nix-tree
    nix-visualize
    deadnix
    update-nix-fetchgit
    nix-prefetch-scripts
    nix-output-monitor
    cachix
    inputs.nix-alien.packages.${system}.nix-alien
    devenv
    manix
    niv
    nix-diff
    nix-fast-build
  ];
}