2024-04-29 20:30:22 +02:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
outputs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
2024-05-12 19:41:33 +02:00
|
|
|
./shell/helix
|
|
|
|
./shell/zellij
|
2024-04-29 20:30:22 +02:00
|
|
|
./shell/zsh.nix
|
2024-04-29 20:41:00 +02:00
|
|
|
./shell/starship.nix
|
2024-04-30 11:30:44 +02:00
|
|
|
./shell/eza.nix
|
2024-05-02 10:02:32 +02:00
|
|
|
./shell/hyfetch.nix
|
2024-04-29 20:30:22 +02:00
|
|
|
];
|
|
|
|
home = {
|
|
|
|
username = "lillian";
|
|
|
|
homeDirectory = "/home/lillian";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
# System tools:
|
|
|
|
sops
|
|
|
|
zsh
|
2024-04-29 21:39:19 +02:00
|
|
|
bat
|
2024-04-29 20:30:22 +02:00
|
|
|
];
|
|
|
|
}
|