Pare down zsh and refactor home manager a bit
This commit is contained in:
parent
ad63481835
commit
aa1213bb65
13 changed files with 36 additions and 121 deletions
24
home-manager/shared/default.nix
Normal file
24
home-manager/shared/default.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue