Compare commits

..

4 commits

2 changed files with 11 additions and 7 deletions

12
flake.lock generated
View file

@ -44,11 +44,11 @@
]
},
"locked": {
"lastModified": 1775425411,
"narHash": "sha256-KY6HsebJHEe5nHOWP7ur09mb0drGxYSzE3rQxy62rJo=",
"lastModified": 1777851538,
"narHash": "sha256-Gp8qwTEYNoy2yvmErVGlvLOQvrtEECCAKbonW7VJef8=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "0d02ec1d0a05f88ef9e74b516842900c41f0f2fe",
"rev": "cc09c0f9b7eaa95c2d9827338a5eb03d32505ca5",
"type": "github"
},
"original": {
@ -82,11 +82,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1776734388,
"narHash": "sha256-vl3dkhlE5gzsItuHoEMVe+DlonsK+0836LIRDnm6MXQ=",
"lastModified": 1777673416,
"narHash": "sha256-5c2POKPOjU40Kh0MirOdScBLG0bu9TAuPYAtPRNZMBs=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "10e7ad5bbcb421fe07e3a4ad53a634b0cd57ffac",
"rev": "26ef669cffa904b6f6832ab57b77892a37c1a671",
"type": "github"
},
"original": {

View file

@ -87,7 +87,11 @@
initExtra = ''
export PS1=" \u@\h:\w \[\e[38;5;205m\]λ\[\e[0m\] "
task ls
if [ "$(ls -A ~/dwn)" ]; then echo "TODO: organize downloads."; fi
mkdir -p ~/dwn
mkdir -p ~/tmp
rmdir ~/thunderbird 2>/dev/null
if [ "$(ls -A ~/dwn)" ]; then echo "TODO: organize dwn."; fi
if [ "$(ls -A ~/tmp)" ]; then echo "TODO:organize tmp."; fi
'';
};