update_me command
This commit is contained in:
parent
7f3acddfee
commit
c4f18159af
3 changed files with 20 additions and 9 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -33,11 +33,11 @@
|
||||||
"pre-commit-hooks": "pre-commit-hooks_2"
|
"pre-commit-hooks": "pre-commit-hooks_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1712925466,
|
"lastModified": 1713005873,
|
||||||
"narHash": "sha256-MJ6VxGNu/ftbn8SErJjBz80FUNXkZfcObHg/JP7wwAc=",
|
"narHash": "sha256-3DFCO/hK8h0Rs14t7uPr95gVHtKKADkjBh+JjSon8Aw=",
|
||||||
"owner": "cachix",
|
"owner": "cachix",
|
||||||
"repo": "devenv",
|
"repo": "devenv",
|
||||||
"rev": "1af93652caf48bfeef6ba7d1cf59fc66e506e5c2",
|
"rev": "8e882058b4602b70093d1fbff57755db09e89f11",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
12
nix/home-manager/flake.lock
generated
12
nix/home-manager/flake.lock
generated
|
@ -44,11 +44,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1712759992,
|
"lastModified": 1713019815,
|
||||||
"narHash": "sha256-2APpO3ZW4idlgtlb8hB04u/rmIcKA8O7pYqxF66xbNY=",
|
"narHash": "sha256-jzTo97VeKMNfnKw3xU+uiU5C7wtnLudsbwl/nwPLC7s=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "31357486b0ef6f4e161e002b6893eeb4fafc3ca9",
|
"rev": "8fdf329526f06886b53b94ddf433848a0d142984",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -187,11 +187,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1712925868,
|
"lastModified": 1713023065,
|
||||||
"narHash": "sha256-KMQqDZXbjPZBZ/kmBvOTbtWKq5m3D1AnFxu9ujv/Qgw=",
|
"narHash": "sha256-itHmb9Z1kxuF7vkbGThlpKiEzBO+375Y7zs0toSC0KU=",
|
||||||
"owner": "nixOS",
|
"owner": "nixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "8f1a3fbaa92f1d59b09f2d24af6a607b5a280071",
|
"rev": "61d5de98080fbe185e83a59c7b0f672257405cec",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
11
zsh/funcs/updater
Normal file
11
zsh/funcs/updater
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
function update_me {
|
||||||
|
pushd ~
|
||||||
|
if [[ ! ( "$@" =~ -n ) ]]; then
|
||||||
|
topgrade
|
||||||
|
fi
|
||||||
|
pushd ~/.dotfiles/nix
|
||||||
|
./update.sh $@
|
||||||
|
popd
|
||||||
|
popd || return
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue