summaryrefslogtreecommitdiff
path: root/home/ebisu/core/nix/default.nix
blob: 0de34307f53121258ac7890e231dd374fbad3524 (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
{
  pkgs,
  inputs,
  ...
}:
{
  imports = [
    ./development
    ./direnv.nix
    ./rui.nix
  ];

  home.packages =
    with pkgs;
    with inputs;
    [
      nix-tree
      nix-visualize
      nix-output-monitor
      cachix
      nix-alien.packages.${pkgs.system}.nix-alien
      manix
      nix-diff
      nix-fast-build
      nix-melt
      nixos-shell
      nix-du
      nvd
      cached-nix-shell
      omnix.packages.${pkgs.system}.default
      nix-search.packages.${system}.default
    ];
}