dotfiles/modules/generic/default.nix
Christopher Mühl bd0a03e7b8 Re-enable darwin builds
home-manager only for now
2026-01-30 12:10:31 +01:00

28 lines
460 B
Nix

{
pkgs,
hostname,
...
}: {
# the `modules/generic` folder is generic only across nixos and darwin, not
# across home manager. home modules are in `modules/home`
imports = [
./nix.nix
./profiles.nix
./secrets.nix
];
# TODO: Move all of these into their own modules?
networking.hostName = hostname;
environment.systemPackages = with pkgs; [
pre-commit
git
gitleaks
helix
fish
just
nh
age
];
}