aboutsummaryrefslogtreecommitdiff
path: root/nix/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'nix/profiles')
-rw-r--r--nix/profiles/home-manager/fish.nix8
-rw-r--r--nix/profiles/home-manager/personal.nix1
-rw-r--r--nix/profiles/home-manager/work.nix1
3 files changed, 10 insertions, 0 deletions
diff --git a/nix/profiles/home-manager/fish.nix b/nix/profiles/home-manager/fish.nix
new file mode 100644
index 0000000..5a2610c
--- /dev/null
+++ b/nix/profiles/home-manager/fish.nix
@@ -0,0 +1,8 @@
+{ ... }: {
+ programs.fish = {
+ enable = true;
+ interactiveShellInit = ''
+ set fish_greeting ""
+ '';
+ };
+}
diff --git a/nix/profiles/home-manager/personal.nix b/nix/profiles/home-manager/personal.nix
index dd4c9f9..68bcc8f 100644
--- a/nix/profiles/home-manager/personal.nix
+++ b/nix/profiles/home-manager/personal.nix
@@ -5,6 +5,7 @@
imports = [
./dev.nix
./firefox.nix
+ ./fish.nix
./git.nix
./shell.nix
./ssh.nix
diff --git a/nix/profiles/home-manager/work.nix b/nix/profiles/home-manager/work.nix
index a9800cd..0643426 100644
--- a/nix/profiles/home-manager/work.nix
+++ b/nix/profiles/home-manager/work.nix
@@ -5,6 +5,7 @@
imports = [
./dev.nix
./firefox.nix
+ ./fish.nix
./git.nix
./shell.nix
./ssh.nix