NixOS-Config/home-manager/shared/default.nix

41 lines
548 B
Nix
Raw Normal View History

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
2024-05-12 19:41:33 +02:00
./shell/helix
./shell/zellij
./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
];
home = {
username = "lillian";
homeDirectory = "/home/lillian";
};
catppuccin = {
enable = true;
flavor = "macchiato";
};
2024-10-03 11:11:30 +02:00
home.packages = with pkgs; [
# System tools:
2024-09-18 16:08:00 +02:00
vscode-langservers-extracted
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
yazi
];
2024-10-17 17:05:30 +02:00
programs.navi.enable = true;
}