summary refs log tree commit diff stats
path: root/user/settings/nix.nix
blob: e0fb3d3e60f864b5eb811a0d055b2e9d8c6d4cb6 (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
{ config
, pkgs
, ...
}:
let
  toml = pkgs.formats.toml { };
in
{
  imports = [
    ../../pin.nix
  ];
  nixpkgs.config = import ../config.nix;
  nix = {
    enable = true;
    package = pkgs.nix;
    settings = {
      use-xdg-base-directories = true;
    };
  };

  home.packages = with pkgs; [
    nil
    nix-prefetch-scripts
    nix-init
    nix-update
    nix-tree
    common-updater-scripts
    nixpkgs-fmt
    nixpkgs-lint
    nixpkgs-review
    nix-output-monitor
    cachix
  ];
  xdg.configFile."nix-init/config.toml".source = toml.generate "config.toml" {
    maintainers = [ "alanpearce" ];
    nixpkgs = "builtins.getFlake \"nixpkgs\"";
  };
  programs.emacs.extraPackages = epkgs: (with epkgs; [
    nix-mode
    nix-update
  ]);
  programs.neovim.plugins = with pkgs.vimPlugins; [
    vim-nix
  ];
}