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";
|
|
|
|
};
|
|
|
|
|
2024-10-03 11:28:54 +02:00
|
|
|
catppuccin = {
|
|
|
|
enable = true;
|
2024-10-03 11:29:41 +02:00
|
|
|
flavor = "macchiato";
|
2024-10-03 11:28:54 +02:00
|
|
|
};
|
2024-10-03 11:11:30 +02:00
|
|
|
|
2024-04-29 20:30:22 +02:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
# System tools:
|
2024-09-18 16:08:00 +02:00
|
|
|
vscode-langservers-extracted
|
2024-04-29 20:30:22 +02:00
|
|
|
sops
|
|
|
|
zsh
|
2024-04-29 21:39:19 +02:00
|
|
|
bat
|
2024-09-28 22:46:37 +02:00
|
|
|
btop
|
2024-10-16 21:47:40 +02:00
|
|
|
broot
|
|
|
|
lazygit
|
2024-10-17 17:05:30 +02:00
|
|
|
navi
|
2024-10-18 17:43:10 +02:00
|
|
|
yazi
|
2024-04-29 20:30:22 +02:00
|
|
|
];
|
2024-10-17 17:05:30 +02:00
|
|
|
programs.navi.enable = true;
|
2024-04-29 20:30:22 +02:00
|
|
|
}
|