mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-08 20:36:40 +00:00
38 lines
1012 B
Nix
38 lines
1012 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
home-manager.users.${config.user} = lib.mkIf pkgs.stdenv.isDarwin {
|
|
|
|
programs.fish = {
|
|
shellAbbrs = {
|
|
nr = lib.mkForce "rebuild-darwin";
|
|
nro = lib.mkForce "rebuild-darwin offline";
|
|
};
|
|
functions = {
|
|
rebuild-darwin = {
|
|
body = ''
|
|
if test "$argv[1]" = "offline"
|
|
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
|
|
'';
|
|
};
|
|
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
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|