29 lines
367 B
Nix
29 lines
367 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./shell/helix
|
|
./shell/zellij
|
|
./shell/zsh.nix
|
|
./shell/starship.nix
|
|
./shell/eza.nix
|
|
./shell/hyfetch.nix
|
|
];
|
|
home = {
|
|
username = "lillian";
|
|
homeDirectory = "/home/lillian";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
# System tools:
|
|
sops
|
|
zsh
|
|
bat
|
|
];
|
|
}
|