Pare down zsh and refactor home manager a bit

This commit is contained in:
Lillian Violet 2024-04-29 20:30:22 +02:00
parent ad63481835
commit aa1213bb65
13 changed files with 36 additions and 121 deletions

View file

@ -0,0 +1,24 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./shell/helix.nix
./shell/zellij.nix
./shell/zsh.nix
];
home = {
username = "lillian";
homeDirectory = "/home/lillian";
};
home.packages = with pkgs; [
# System tools:
sops
zsh
];
}