os/shared/core/default.nix
Riley Apeldoorn 75603bd327 Refactor the shared/core namespace
- Move trivial modules to `services.nix`
- Gather user-related config in `users.nix`
- Move loading of shared home-manager config into `shared/core`
2023-06-17 20:48:22 +02:00

23 lines
320 B
Nix

{ pkgs, ... }:
{
imports = [
./services.nix
./backups.nix
./users.nix
./gui.nix
./nix.nix
];
config = {
time.timeZone = "Europe/Amsterdam";
environment.systemPackages = (import ../env.nix pkgs) ++ (with pkgs; [
# For Mae
neovim
# For me
helix
]);
};
}