blob: 3d1b953f72995ae27b35a90bee26bb35af290223 (
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
|
{ config
, pkgs
, ...
}:
let
toml = pkgs.formats.toml { };
in
{
nixpkgs.config = import ../config.nix;
nix = {
enable = true;
package = pkgs.nix;
settings = {
use-xdg-base-directories = true;
};
};
home.packages = with pkgs; [
nil
npins
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 = "<nixpkgs>";
};
programs.emacs.extraPackages = epkgs: (with epkgs; [
nix-mode
nix-update
]);
programs.neovim.plugins = with pkgs.vimPlugins; [
vim-nix
];
}
|