fish: removed aliases, assets: removed wallpapers

This commit is contained in:
Charlie Root 2024-08-07 12:03:04 +02:00
commit e58f6c3e7f
103 changed files with 1 additions and 10 deletions

View file

@ -7,7 +7,6 @@
with lib; let
cfg = config.modules.programs.fish;
inherit (config.modules.other.system) username;
inherit (config.modules.other.system) gitPath;
in {
options.modules.programs.fish = {
enable = mkEnableOption "fish";
@ -21,7 +20,6 @@ in {
config = mkIf cfg.enable {
programs.fish.enable = true;
users.users.${username}.shell = pkgs.fish;
environment = {
shells = [pkgs.fish];
@ -29,6 +27,7 @@ in {
};
home-manager.users.${username} = {
shell = pkgs.fish;
programs = {
zoxide.enable = true;
zoxide.enableFishIntegration = true;
@ -58,7 +57,6 @@ in {
ls = "eza ";
l = "eza -a ";
la = "eza -lha --git";
kys = "shutdown now";
lg = "lazygit";
cd = "z";
v = "nvim";