18 lines
493 B
Nix
18 lines
493 B
Nix
{ pkgs, nixos-config, ... }:
|
|
{
|
|
imports = [
|
|
"${nixos-config}/modules"
|
|
"${nixos-config}/services/tailscale.nix"
|
|
"${nixos-config}/services/openssh.nix"
|
|
"${nixos-config}/services/restic.nix"
|
|
"${nixos-config}/users"
|
|
"${nixos-config}/programs"
|
|
./systemd-boot.nix
|
|
./i18n.nix
|
|
./overlays
|
|
];
|
|
boot.initrd.systemd.enable = true;
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
hardware.enableRedistributableFirmware = true;
|
|
security.sudo.enable = false;
|
|
}
|