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

26 lines
323 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./shell/helix.nix
./shell/zellij.nix
./shell/zsh.nix
./shell/starship.nix
];
home = {
username = "lillian";
homeDirectory = "/home/lillian";
};
home.packages = with pkgs; [
# System tools:
sops
zsh
];
}