summaryrefslogtreecommitdiff
path: root/home/shells
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-11-10 23:32:21 +0100
committeradikro <adikro@disroot.org>2025-11-10 23:32:21 +0100
commit9e89a97d16d5cc697c3f1d9b2572609d9755c133 (patch)
treeda5dea76be486ab4514b3e20bf09c07144e087fe /home/shells
test
Diffstat (limited to 'home/shells')
-rw-r--r--home/shells/fish.nix17
-rw-r--r--home/shells/starship.nix10
2 files changed, 27 insertions, 0 deletions
diff --git a/home/shells/fish.nix b/home/shells/fish.nix
new file mode 100644
index 0000000..9634249
--- /dev/null
+++ b/home/shells/fish.nix
@@ -0,0 +1,17 @@
+{ ... }:
+
+{
+ programs.fish = {
+ enable = true;
+
+ interactiveShellInit =
+ ''
+ set fish_greeting
+ fastfetch
+ '';
+
+ shellAliases = {
+ gs = "git status";
+ };
+ };
+}
diff --git a/home/shells/starship.nix b/home/shells/starship.nix
new file mode 100644
index 0000000..bd4aa3c
--- /dev/null
+++ b/home/shells/starship.nix
@@ -0,0 +1,10 @@
+{ ... }:
+{
+ programs.starship = {
+ enable = true;
+
+ settings = {
+ add_newline = true;
+ };
+ };
+}