Compare commits

...

6 Commits

Author SHA1 Message Date
96b81d3213 hurricane: 33 current 2025-06-19 15:05:53 25.05.20250615.6c64dab 6.15.2 *
command-not-found fix
hurricane: 35 current  2025-06-19 15:20:50  25.05.20250617.36ab78d     6.15.2                          *

command-not-found fix

hurricane: 36 current  2025-06-19 15:25:35  25.05.20250617.36ab78d     6.15.2                          *

command-not-found fix
2025-06-19 15:27:41 +02:00
c601c2a150 hurricane: 34 current 2025-06-19 15:13:03 25.05.20250617.36ab78d 6.15.2 *
update
2025-06-19 15:27:34 +02:00
4d36ac24c0 hurricane: 32 current 2025-06-19 15:01:25 25.05.20250615.6c64dab 6.15.2 *
fish
2025-06-19 15:24:53 +02:00
0b35f3c16b hurricane: 30 current 2025-06-19 14:53:13 25.05.20250615.6c64dab 6.15.2 *
hurricane: 31 current  2025-06-19 14:58:17  25.05.20250615.6c64dab     6.15.2                          *
2025-06-19 15:14:36 +02:00
6d65ac8fa4 hurricane: 29 current 2025-06-19 14:46:19 25.05.20250615.6c64dab 6.15.2 *
fish and starship conf
2025-06-19 15:14:18 +02:00
8208b1e269 hurricane: 28 current 2025-06-19 14:24:08 25.05.20250615.6c64dab 6.15.2 *
starship
2025-06-19 15:14:01 +02:00
2 changed files with 39 additions and 11 deletions

18
flake.lock generated
View File

@@ -201,11 +201,11 @@
"xdph": "xdph"
},
"locked": {
"lastModified": 1750106438,
"narHash": "sha256-zaTFR6NLaXkveEGl2kdl4UlvT7eHm3cYSbgSkibCO+M=",
"lastModified": 1750337883,
"narHash": "sha256-mV/Fnfs4cZeOtbxLrrr93AFgDJXyN+9vsGulsg4zJWM=",
"owner": "hyprwm",
"repo": "hyprland",
"rev": "0ece4af36a988ad06b28ed666011d84372d9e4dc",
"rev": "86b5e3bfbc99237bb28a253fbef49b9c1b7bc3a3",
"type": "github"
},
"original": {
@@ -252,11 +252,11 @@
]
},
"locked": {
"lastModified": 1749980366,
"narHash": "sha256-sB2jmzoZgxMOpLsw4EfQyp2NbO3qhorR6gAdbNXHxOk=",
"lastModified": 1750184339,
"narHash": "sha256-/QGKUdSOXJInLwlDzgtZZvPdbA+xI2z9CFbZ+iBN3j4=",
"owner": "hyprwm",
"repo": "hyprland-plugins",
"rev": "4783860953a0777fee43d45fee0df9173f9e8c9e",
"rev": "c0e675dd87d737f8ef64327291cbbb201f3764ba",
"type": "github"
},
"original": {
@@ -647,11 +647,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1750005367,
"narHash": "sha256-h/aac1dGLhS3qpaD2aZt25NdKY7b+JT0ZIP2WuGsJMU=",
"lastModified": 1750133334,
"narHash": "sha256-urV51uWH7fVnhIvsZIELIYalMYsyr2FCalvlRTzqWRw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "6c64dabd3aa85e0c02ef1cdcb6e1213de64baee3",
"rev": "36ab78dab7da2e4e27911007033713bab534187b",
"type": "github"
},
"original": {

View File

@@ -50,6 +50,7 @@ in {
gcc
libgcc
nil
sqlite
# Common programs
ghostty
@@ -69,13 +70,40 @@ in {
];
programs = {
command-not-found = {
enable = true;
dbPath = "/run/current-system/sw/bin/sqlite3";
};
# CLI
zoxide = {
enable = true;
flags = ["--cmd cd"];
};
fish.enable = true;
starship.enable = true;
fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting # Disable greeting
'';
shellAliases = {
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../../";
"....." = "cd ../../../../";
"cp" = "cp -v";
"ls" = "ls -lah";
"mkdir" = "mkdir -p";
"mv" = "mv -v";
"rm" = "rm -v";
};
};
starship = {
enable = true;
presets = ["nerd-font-symbols" "gruvbox-rainbow"];
settings = {
add_newline = false;
};
};
vim = {
enable = true;
defaultEditor = true;