config/modules/shared/default.nix

16 lines
325 B
Nix
Raw Normal View History

2025-05-07 10:22:05 -07:00
# shared is used by nixos-rebuild and darwin-rebuild
2025-05-12 15:19:01 -07:00
{ pkgs, ... }:
{
2025-05-01 12:41:47 -07:00
imports = [
2025-05-07 10:22:05 -07:00
# sort-lines:start
./user-system-settings.nix
2025-05-01 12:41:47 -07:00
./nix.nix
2025-05-07 10:22:05 -07:00
# sort-lines:end
2025-05-01 12:41:47 -07:00
];
2025-05-12 15:19:01 -07:00
# install neovim globally, but let home-manager install
# the per-user configured one.
environment.systemPackages = [
pkgs.neovim
];
2025-05-01 12:41:47 -07:00
}