This commit is contained in:
John Lancaster
2025-04-04 01:04:23 -05:00
parent 1c27e2f318
commit 07d1bd6e06
3 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,6 @@
bash
git
eza
gh
sops
gdbm
];

View File

@@ -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;
};
};
};

View File

@@ -1,4 +1,4 @@
{ userSettings, ... }:
{ ... }:
{
programs.zsh = {
enable = true;
@@ -17,7 +17,7 @@
];
};
shellAliases = {
ls = "eza -lg";
ls = "eza -lgs type -o --no-time";
};
};
}