aboutsummaryrefslogtreecommitdiffstats
path: root/home/fish/default.nix
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2024-05-23 09:44:38 +0300
committerPetri Hienonen <petri.hienonen@gmail.com>2024-05-23 09:44:38 +0300
commit75c2af4aedd2ac5c2cfc74b346625fa4b265541d (patch)
treef0a58a6c699dc305ae8f506a806761ad7e57029c /home/fish/default.nix
downloadnixos-75c2af4aedd2ac5c2cfc74b346625fa4b265541d.tar.zst
Nixos
Diffstat (limited to 'home/fish/default.nix')
-rw-r--r--home/fish/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/home/fish/default.nix b/home/fish/default.nix
new file mode 100644
index 0000000..af2a377
--- /dev/null
+++ b/home/fish/default.nix
@@ -0,0 +1,14 @@
+{ vars, pkgs, ... }:
+
+{
+ programs.fish = {
+ enable = true;
+ interactiveShellInit = ''
+ function fish_greeting
+ if status is-interactive
+ fastfetch
+ end
+ end
+ '';
+ };
+}