dotfiles/modules/common/default.nix
2025-08-07 10:25:47 +02:00

20 lines
361 B
Nix

{pkgs, ...}: {
# This module is common to all systems, both nixos and darwin. It is
# automatically added to all hosts via the flake configuration.
imports = [
./elements.nix
./secrets.nix
./nix.nix
./programs/home-manager.nix
];
environment.systemPackages = with pkgs; [
pre-commit
git
gitleaks
just
age
];
}