grimm-nixos-laptop/common/tooling/nix.nix

47 lines
985 B
Nix
Raw Permalink Normal View History

2024-05-07 23:31:41 +02:00
{
pkgs,
config,
lib,
inputs,
...
}:
2024-04-27 10:51:53 +02:00
let
cfg = config.grimmShared;
in
{
environment.systemPackages = with pkgs; [
(writeShellScriptBin "nix-referrers" "nix-store --query --referrers $@")
(writeShellScriptBin "nixpkgs-review-head" "nixpkgs-review rev HEAD")
2024-05-07 13:13:37 +02:00
(writeShellScriptBin "rebuild" "bash -c \"nixos-rebuild switch |& nom\"")
2024-04-27 10:51:53 +02:00
nixpkgs-review
nixpkgs-fmt
2024-05-06 23:22:32 +02:00
nixfmt-rfc-style
2024-04-27 10:51:53 +02:00
nixd
2024-05-06 23:22:32 +02:00
nixpkgs-hammering
2024-04-27 10:51:53 +02:00
nix-output-monitor
nix-search-cli
2024-05-07 12:19:14 +02:00
niv
2024-05-08 21:49:37 +02:00
vulnix
2024-04-27 10:51:53 +02:00
];
2024-05-07 23:31:41 +02:00
environment.sessionVariables = lib.mkIf pkgs.config.allowUnfree { NIXPKGS_ALLOW_UNFREE = "1"; };
2024-04-27 14:20:48 +02:00
2024-05-07 23:31:41 +02:00
grimmShared.tooling.nvim.plugins = with pkgs.vimPlugins; [ vim-nix ];
2024-04-27 10:51:53 +02:00
2024-04-30 12:08:28 +02:00
nix.settings = {
2024-05-07 23:31:41 +02:00
experimental-features = [
"nix-command"
"flakes"
];
2024-04-30 12:08:28 +02:00
warn-dirty = false;
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
2024-05-07 12:19:14 +02:00
# nix.package = pkgs.nixVersions.latest;
2024-04-30 12:08:28 +02:00
nix.optimise.automatic = true;
2024-04-27 10:51:53 +02:00
}