os/shared/core/default.nix

25 lines
337 B
Nix
Raw Normal View History

2023-05-21 21:15:04 +02:00
{ pkgs, ... }:
{
imports = [
./services.nix
2023-06-15 20:39:45 +02:00
./backups.nix
2023-06-24 10:08:48 +02:00
./docker.nix
./users.nix
2023-06-06 16:05:51 +02:00
./gui.nix
2023-05-21 21:15:04 +02:00
./nix.nix
];
config = {
2023-05-22 18:35:54 +02:00
time.timeZone = "Europe/Amsterdam";
environment.systemPackages = (import ../env.nix pkgs) ++ (with pkgs; [
# For Mae
neovim
# For me
helix
]);
2023-05-21 21:15:04 +02:00
};
}