dotfiles/modules/common/default.nix
Christopher Mühl 53b8448159 Make common modules compatible for nix-darwin
TODO: Determine why nushell config is populated twice
2025-08-06 23:14:38 +02:00

23 lines
369 B
Nix

{
inputs,
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
];
}