nixos-config/config/default.nix

14 lines
345 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-11-03 10:25:39 +00:00
"${nixos-config}/programs"
2024-10-29 12:29:05 +00:00
./systemd-boot.nix
2024-11-05 08:11:22 +00:00
./i18n.nix
2024-10-29 12:29:05 +00:00
];
2024-10-29 12:58:15 +00:00
boot.initrd.systemd.enable = true;
2024-11-05 09:18:46 +00:00
hardware.enableRedistributableFirmware = true;
2024-10-29 12:29:05 +00:00
}