os/shared/core/default.nix

26 lines
379 B
Nix
Raw Normal View History

2023-06-19 15:15:59 +02:00
{ pkgs, agenix, ... }:
2023-05-21 21:15:04 +02:00
{
imports = [
2023-06-19 15:15:59 +02:00
agenix.nixosModules.default
../secrets.nix
./services.nix
2023-06-15 20:39:45 +02:00
./backups.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
};
}