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

29 lines
367 B
Nix
Raw Permalink 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";
};
home.packages = with pkgs; [
# System tools:
sops
zsh
2024-04-29 21:39:19 +02:00
bat
];
}