From adbd14256bec7ca9e178ffb3e47c2bf41f444233 Mon Sep 17 00:00:00 2001 From: Jessica Canady Date: Sun, 25 Jun 2023 22:45:49 -0400 Subject: [PATCH] Fish and starship. Maybe. --- hosts/hornt.nix | 4 ++++ users/phoenix/hm.nix | 5 ++++- users/phoenix/user.nix | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/hosts/hornt.nix b/hosts/hornt.nix index 71bde36..d12aa96 100644 --- a/hosts/hornt.nix +++ b/hosts/hornt.nix @@ -23,8 +23,12 @@ boot.initrd.luks.devices."luks-7f4ea65e-d802-42d8-978c-91b0db3e341c".device = "/dev/disk/by-uuid/7f4ea65e-d802-42d8-978c-91b0db3e341c"; boot.initrd.luks.devices."luks-7f4ea65e-d802-42d8-978c-91b0db3e341c".keyFile = "/crypto_keyfile.bin"; + # lol hornt networking.hostName = "hornt"; + # stuff that needs installed systemwide + programs.fish.enable = true; + # Enable networking networking.networkmanager.enable = true; diff --git a/users/phoenix/hm.nix b/users/phoenix/hm.nix index 6e8667a..1e4cb95 100644 --- a/users/phoenix/hm.nix +++ b/users/phoenix/hm.nix @@ -76,7 +76,10 @@ "; }; - programs.starship.enable = true; + programs.starship = { + enable = true; + enableFishIntegration = true; + }; # stylin' diff --git a/users/phoenix/user.nix b/users/phoenix/user.nix index 6576379..54e7c65 100644 --- a/users/phoenix/user.nix +++ b/users/phoenix/user.nix @@ -10,5 +10,6 @@ description = "Jessica Canady"; extraGroups = [ "networkmanager" "wheel" "nixbld" "docker" "audio"]; initialPassword = "password"; + shell = pkgs.fish; }; }