update_me command

This commit is contained in:
Anthony Cicchetti 2024-04-13 12:01:19 -04:00
parent 7f3acddfee
commit c4f18159af
3 changed files with 20 additions and 9 deletions

6
flake.lock generated
View file

@ -33,11 +33,11 @@
"pre-commit-hooks": "pre-commit-hooks_2"
},
"locked": {
"lastModified": 1712925466,
"narHash": "sha256-MJ6VxGNu/ftbn8SErJjBz80FUNXkZfcObHg/JP7wwAc=",
"lastModified": 1713005873,
"narHash": "sha256-3DFCO/hK8h0Rs14t7uPr95gVHtKKADkjBh+JjSon8Aw=",
"owner": "cachix",
"repo": "devenv",
"rev": "1af93652caf48bfeef6ba7d1cf59fc66e506e5c2",
"rev": "8e882058b4602b70093d1fbff57755db09e89f11",
"type": "github"
},
"original": {

View file

@ -44,11 +44,11 @@
]
},
"locked": {
"lastModified": 1712759992,
"narHash": "sha256-2APpO3ZW4idlgtlb8hB04u/rmIcKA8O7pYqxF66xbNY=",
"lastModified": 1713019815,
"narHash": "sha256-jzTo97VeKMNfnKw3xU+uiU5C7wtnLudsbwl/nwPLC7s=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "31357486b0ef6f4e161e002b6893eeb4fafc3ca9",
"rev": "8fdf329526f06886b53b94ddf433848a0d142984",
"type": "github"
},
"original": {
@ -187,11 +187,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1712925868,
"narHash": "sha256-KMQqDZXbjPZBZ/kmBvOTbtWKq5m3D1AnFxu9ujv/Qgw=",
"lastModified": 1713023065,
"narHash": "sha256-itHmb9Z1kxuF7vkbGThlpKiEzBO+375Y7zs0toSC0KU=",
"owner": "nixOS",
"repo": "nixpkgs",
"rev": "8f1a3fbaa92f1d59b09f2d24af6a607b5a280071",
"rev": "61d5de98080fbe185e83a59c7b0f672257405cec",
"type": "github"
},
"original": {

11
zsh/funcs/updater Normal file
View file

@ -0,0 +1,11 @@
function update_me {
pushd ~
if [[ ! ( "$@" =~ -n ) ]]; then
topgrade
fi
pushd ~/.dotfiles/nix
./update.sh $@
popd
popd || return
}