switch rebuild-nixos to smarter abbreviation

This commit is contained in:
Noah Masur 2024-12-05 22:00:14 +00:00
parent 1b04f9a883
commit 006554f545
No known key found for this signature in database
2 changed files with 11 additions and 11 deletions

View File

@ -16,7 +16,9 @@
nps = "nix repl --expr 'import <nixpkgs>{}'";
nixo = "man configuration.nix";
nixh = "man home-configuration.nix";
nr = "rebuild-nixos";
nr = {
function = "rebuild-nixos";
};
nro = "rebuild-nixos offline";
hm = "rebuild-home";
};
@ -46,15 +48,13 @@
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
echo "doas nixos-rebuild switch $option--flake ${config.dotfilesPath}#${config.networking.hostName}"
'';
};
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
echo "${pkgs.home-manager}/bin/home-manager switch --flake ${config.dotfilesPath}#${config.networking.hostName}";
'';
};
};

View File

@ -10,7 +10,9 @@
programs.fish = {
shellAbbrs = {
nr = lib.mkForce "rebuild-darwin";
nr = {
function = lib.mkForce "rebuild-darwin";
};
nro = lib.mkForce "rebuild-darwin offline";
};
functions = {
@ -20,15 +22,13 @@
set option "--option substitute false"
end
git -C ${config.dotfilesPath} add --intent-to-add --all
commandline -r "darwin-rebuild switch $option --flake ${config.dotfilesPath}#lookingglass"
commandline --function execute
echo "darwin-rebuild switch $option--flake ${config.dotfilesPath}#lookingglass"
'';
};
rebuild-home = lib.mkForce {
body = ''
git -C ${config.dotfilesPath} add --intent-to-add --all
commandline -r "${pkgs.home-manager}/bin/home-manager switch --flake ${config.dotfilesPath}#lookingglass";
commandline --function execute
echo "${pkgs.home-manager}/bin/home-manager switch --flake ${config.dotfilesPath}#lookingglass";
'';
};
};