mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
133 lines
3.8 KiB
Nix
133 lines
3.8 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
home-manager.users.${config.user} = {
|
|
|
|
programs.fish = {
|
|
shellAbbrs = {
|
|
n = "nix";
|
|
ns = "nix-shell -p";
|
|
nsf = "nix-shell --run fish -p";
|
|
nsr = "nix-shell-run";
|
|
nps = "nix repl '<nixpkgs>'";
|
|
nixo = "man configuration.nix";
|
|
nixh = "man home-configuration.nix";
|
|
nr = "rebuild-nixos";
|
|
nro = "rebuild-nixos offline";
|
|
hm = "rebuild-home";
|
|
};
|
|
functions = {
|
|
nix-shell-run = {
|
|
body = ''
|
|
set program $argv[1]
|
|
if test (count $argv) -ge 2
|
|
commandline -r "nix run nixpkgs#$program -- $argv[2..-1]"
|
|
else
|
|
commandline -r "nix run nixpkgs#$program"
|
|
end
|
|
commandline -f execute
|
|
'';
|
|
};
|
|
nix-fzf = {
|
|
body = ''
|
|
commandline -i (nix-instantiate --eval --json \
|
|
-E 'builtins.attrNames (import <nixpkgs> {})' \
|
|
| jq '.[]' -r | fzf)
|
|
commandline -f repaint
|
|
'';
|
|
};
|
|
rebuild-nixos = {
|
|
body = ''
|
|
if test "$argv[1]" = "offline"
|
|
set option "--option substitute false"
|
|
end
|
|
git -C ${config.dotfilesPath} add --intent-to-add --all
|
|
commandline -r "doas nixos-rebuild switch $option --flake ${config.dotfilesPath}#${config.networking.hostName}"
|
|
commandline --function execute
|
|
'';
|
|
};
|
|
rebuild-home = {
|
|
body = ''
|
|
git -C ${config.dotfilesPath} add --intent-to-add --all
|
|
commandline -r "${pkgs.home-manager}/bin/home-manager switch --flake ${config.dotfilesPath}#${config.networking.hostName}";
|
|
commandline --function execute
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
# Provides "command-not-found" options
|
|
programs.nix-index = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
};
|
|
|
|
# Create nix-index if doesn't exist
|
|
home.activation.createNixIndex =
|
|
let
|
|
cacheDir = "${config.homePath}/.cache/nix-index";
|
|
in
|
|
lib.mkIf config.home-manager.users.${config.user}.programs.nix-index.enable (
|
|
config.home-manager.users.${config.user}.lib.dag.entryAfter [ "writeBoundary" ] ''
|
|
if [ ! -d ${cacheDir} ]; then
|
|
$DRY_RUN_CMD ${pkgs.nix-index}/bin/nix-index -f ${pkgs.path}
|
|
fi
|
|
''
|
|
);
|
|
|
|
# Set automatic generation cleanup for home-manager
|
|
nix.gc = {
|
|
automatic = config.nix.gc.automatic;
|
|
options = config.nix.gc.options;
|
|
};
|
|
};
|
|
|
|
nix = {
|
|
|
|
# Set channel to flake packages, used for nix-shell commands
|
|
nixPath = [ "nixpkgs=${pkgs.path}" ];
|
|
|
|
# Set registry to this flake's packages, used for nix X commands
|
|
registry.nixpkgs.to = {
|
|
type = "path";
|
|
path = builtins.toString pkgs.path;
|
|
};
|
|
|
|
# For security, only allow specific users
|
|
settings.allowed-users = [
|
|
"@wheel"
|
|
config.user
|
|
];
|
|
|
|
# Enable features in Nix commands
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
warn-dirty = false
|
|
'';
|
|
|
|
gc = {
|
|
automatic = true;
|
|
options = "--delete-older-than 10d";
|
|
};
|
|
|
|
settings = {
|
|
|
|
# Add community Cachix to binary cache
|
|
# Don't use with macOS because blocked by corporate firewall
|
|
builders-use-substitutes = true;
|
|
substituters = lib.mkIf (!pkgs.stdenv.isDarwin) [ "https://nix-community.cachix.org" ];
|
|
trusted-public-keys = lib.mkIf (!pkgs.stdenv.isDarwin) [
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
];
|
|
|
|
# Scans and hard links identical files in the store
|
|
# Not working with macOS: https://github.com/NixOS/nix/issues/7273
|
|
auto-optimise-store = lib.mkIf (!pkgs.stdenv.isDarwin) true;
|
|
};
|
|
};
|
|
}
|