14 lines
347 B
Nix
14 lines
347 B
Nix
{ nixos-config, ... }:
|
|
{
|
|
imports = [
|
|
"${nixos-config}/modules"
|
|
"${nixos-config}/services/tailscale.nix"
|
|
"${nixos-config}/services/openssh.nix"
|
|
"${nixos-config}/users"
|
|
"${nixos-config}/programs"
|
|
./systemd-boot.nix
|
|
./i18n.nix
|
|
];
|
|
boot.initrd.systemd.enable = true;
|
|
hardware.enableRedistributableFirmware = true;
|
|
}
|