You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
290 B
Plaintext
12 lines
290 B
Plaintext
8 months ago
|
def after_apply_all [] {
|
||
|
if not ('~/.nix-profile/bin/home-manager' | path exists) {
|
||
|
print $"(ansi red)home-manager is not installed(ansi reset)"
|
||
|
return
|
||
|
}
|
||
|
print "Updating with home-manager"
|
||
|
( home-manager switch )
|
||
|
print "Cleaning nix store"
|
||
|
( nix-store --gc )
|
||
|
ignore
|
||
|
}
|