mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 11:33:07 +01:00
12 lines
368 B
Nix
12 lines
368 B
Nix
|
{ pkgs, host, username, ... }:
|
||
|
|
||
|
pkgs.writeShellScriptBin "themechange" ''
|
||
|
if [[ ! $@ ]];then
|
||
|
echo "No Theme Given"
|
||
|
else
|
||
|
replacement="$1"
|
||
|
sed -i "/^\s*theme[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$replacement\"/" /home/${username}/zaneyos/hosts/${host}/variables.nix
|
||
|
kitty -e pkexec nixos-rebuild switch --flake /home/${username}/zaneyos
|
||
|
fi
|
||
|
''
|