dotfiles/modules/common/default.nix
Christopher Mühl 0fa23fdd05
Create nushell application wrapper
Also move elements to `/nix/elements`.
2025-11-19 00:21:17 +01:00

21 lines
368 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
nh
age
];
}