user/settings/nix.nix (view 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 | { config , pkgs , ... }: let toml = pkgs.formats.toml { }; in { imports = [ ../../pin.nix ]; nixpkgs.config = import ../config.nix; # move to system config programs.fish.interactiveShellInit = '' any-nix-shell fish --info-right | source ''; home.packages = with pkgs; [ any-nix-shell nil nix-prefetch-scripts nix-init nix-update nix-tree common-updater-scripts nixpkgs-fmt nixpkgs-review nix-output-monitor cachix ]; xdg.configFile."nix-init/config.toml".source = toml.generate "config.toml" { maintainers = [ "alanpearce" ]; nixpkgs = "builtins.getFlake \"nixpkgs\""; }; nixpkgs.overlays = [ (import ../overlays/extra-packages.nix) ]; programs.emacs.extraPackages = epkgs: (with epkgs; [ nix-mode nix-update ]); programs.neovim.plugins = with pkgs.vimPlugins; [ vim-nix ]; } |