diff --git a/configuration.nix b/configuration.nix index 5fa9dd4..a1d9952 100644 --- a/configuration.nix +++ b/configuration.nix @@ -26,7 +26,6 @@ bash git eza - gh sops gdbm ]; diff --git a/home-manager/default.nix b/home-manager/default.nix index d9b18ff..d4e15a9 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -20,11 +20,12 @@ home.homeDirectory = lib.mkForce "${userSettings.adHome}"; systemd.user.startServices = "sd-switch"; # helps with handling systemd services when switching imports = [ + (import ./zsh.nix) (import ./git.nix {inherit userSettings;}) - (import ./zsh.nix {inherit userSettings;}) ]; programs = { ssh.enable = true; + gh.enable = true; }; }; }; diff --git a/home-manager/zsh.nix b/home-manager/zsh.nix index dc03ffc..dd7d4ae 100644 --- a/home-manager/zsh.nix +++ b/home-manager/zsh.nix @@ -1,4 +1,4 @@ -{ userSettings, ... }: +{ ... }: { programs.zsh = { enable = true; @@ -17,7 +17,7 @@ ]; }; shellAliases = { - ls = "eza -lg"; + ls = "eza -lgs type -o --no-time"; }; }; } \ No newline at end of file