nixos-config/config/default.nix

11 lines
250 B
Nix
Raw Normal View History

2024-10-29 12:29:05 +00:00
{nixos-config, ...}: {
imports = [
"${nixos-config}/modules"
"${nixos-config}/services/tailscale.nix"
2024-10-30 08:06:52 +00:00
"${nixos-config}/services/openssh.nix"
2024-10-29 13:55:53 +00:00
"${nixos-config}/users"
2024-10-29 12:29:05 +00:00
./systemd-boot.nix
];
2024-10-29 12:58:15 +00:00
boot.initrd.systemd.enable = true;
2024-10-29 12:29:05 +00:00
}