mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +05:30
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{ config, lib, pkgs, myName, myDotfilesDir, ... }:
|
|
|
|
let
|
|
# This sets up my "phoenix" script with my configuration paths
|
|
# =phoenix= is just my wrapper script for easier access to nix/nixos commands
|
|
myPhoenixScript = ''
|
|
if [ "$1" = "sync" ]; then
|
|
if [ "$2" != "user" ]; then
|
|
pushd ''+myDotfilesDir+'';
|
|
sudo nixos-rebuild switch --flake .#;
|
|
popd;
|
|
elif [ "2" != "system" ]; then
|
|
pushd ''+myDotfilesDir+'';
|
|
home-manager switch --flake .#''+myName+'';
|
|
popd;
|
|
killall xmobar;
|
|
xmonad --recompile && xmonad --restart;
|
|
emacsclient --no-wait --eval "(load-theme 'doom-stylix t nil)";
|
|
pushd ~/.emacs.d/eaf/app/browser;
|
|
rm package*.json;
|
|
npm install darkreader @mozilla/readability && rm package*.json;
|
|
popd;
|
|
~/.fehbg-stylix;
|
|
fi
|
|
elif [ "$1" = "update" ]; then
|
|
pushd ''+myDotfilesDir+'';
|
|
nix flake update;
|
|
popd;
|
|
elif [ "$1" = "gc" ]; then
|
|
if [ "$2" = "full" ]; then
|
|
sudo nix-collect-garbage --delete-old;
|
|
elif [ "$2" ]; then
|
|
sudo nix-collect-garbage --delete-older-than $2;
|
|
else
|
|
sudo nix-collect-garbage --delete-older-than 30d;
|
|
fi
|
|
fi
|
|
'';
|
|
in
|
|
{
|
|
home.packages = [
|
|
(pkgs.writeScriptBin "phoenix" myPhoenixScript)
|
|
];
|
|
}
|