2024-04-29 20:30:22 +02:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
outputs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
|
|
|
./shell/helix.nix
|
|
|
|
./shell/zellij.nix
|
|
|
|
./shell/zsh.nix
|
2024-04-29 20:41:00 +02:00
|
|
|
./shell/starship.nix
|
2024-04-29 20:30:22 +02:00
|
|
|
];
|
|
|
|
home = {
|
|
|
|
username = "lillian";
|
|
|
|
homeDirectory = "/home/lillian";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
# System tools:
|
|
|
|
sops
|
|
|
|
zsh
|
|
|
|
];
|
|
|
|
}
|