feat(homes/rafiq): switch to fish shell

This commit is contained in:
Mohammad Rafiq 2025-07-02 17:48:27 +08:00
parent b9ad8ac2ca
commit 1f70a57e11
No known key found for this signature in database
3 changed files with 10 additions and 29 deletions

View file

@ -1,22 +1,13 @@
{ pkgs, ... }:
let
inherit (pkgs) zsh;
in
{
mainUser = {
name = "rafiq";
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdsZyY3gu8IGB8MzMnLdh+ClDxQQ2RYG9rkeetIKq8n";
email = "rafiq@rrv.sh";
shell = pkgs.fish;
};
server.mountHelios = true;
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml";
users.defaultUserShell = zsh;
programs = {
zsh.enable = true;
zsh.enableCompletion = true;
nix-ld = {
enable = true;
libraries = with pkgs; [ ];
};
};
programs.fish.enable = true;
programs.nix-ld.enable = true;
}