This commit is contained in:
albert 2024-04-29 09:55:56 +09:00
parent 005b21f1fd
commit bca413114d
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
6 changed files with 8 additions and 2 deletions

View file

@ -19,6 +19,7 @@ in
programs.starship = { programs.starship = {
enable = true; enable = true;
enableBashIntegration = true; enableBashIntegration = true;
enableFishIntegration = true;
settings = { settings = {
format = lib.concatStrings [ format = lib.concatStrings [
# "[](${usernameBG})" # "[](${usernameBG})"

View file

@ -30,6 +30,7 @@
# Extras # Extras
sudo sudo
tailscale tailscale
fish
]; ];
}; };
}; };

View file

@ -42,5 +42,6 @@
ethtool # Ethernet troubleshooting ethtool # Ethernet troubleshooting
fd # alternative to "Find" fd # alternative to "Find"
lazygit # Decent Git TUI lazygit # Decent Git TUI
fish # Shell
]; ];
} }

View file

@ -43,6 +43,7 @@
sshpass sshpass
fd fd
eza eza
fish
]; ];
# Select internationalisation properties. # Select internationalisation properties.

View file

@ -36,6 +36,7 @@
sshpass sshpass
cryptsetup cryptsetup
fd fd
fish
]; ];
# Select internationalisation properties. # Select internationalisation properties.

View file

@ -17,6 +17,7 @@ in {
++ ifExists [ "docker" ] ++ ifExists [ "docker" ]
++ ifExists [ "podman" ] ++ ifExists [ "podman" ]
++ ifExists [ "syncthing" ]; ++ ifExists [ "syncthing" ];
# shell = pkgs.fish;
# mkpasswd -m sha-512 # mkpasswd -m sha-512
hashedPassword = "$y$j9T$wKLsIWaA4Gf63RvjedwLJ0$EHKL6BBJV0CAxEKcHHjaBqW085KJ/MGvmbyWzmcWOy6"; hashedPassword = "$y$j9T$wKLsIWaA4Gf63RvjedwLJ0$EHKL6BBJV0CAxEKcHHjaBqW085KJ/MGvmbyWzmcWOy6";
packages = [ pkgs.home-manager ]; packages = [ pkgs.home-manager ];