nixos-config/config/default.nix

19 lines
493 B
Nix
Raw Normal View History

2024-11-10 11:11:23 +01:00
{ pkgs, nixos-config, ... }:
2024-11-09 15:02:26 +01:00
{
2024-10-29 13:29:05 +01:00
imports = [
"${nixos-config}/modules"
"${nixos-config}/services/tailscale.nix"
2024-10-30 09:06:52 +01:00
"${nixos-config}/services/openssh.nix"
2024-11-12 10:16:09 +01:00
"${nixos-config}/services/restic.nix"
2024-10-29 14:55:53 +01:00
"${nixos-config}/users"
2024-11-03 11:25:39 +01:00
"${nixos-config}/programs"
2024-10-29 13:29:05 +01:00
./systemd-boot.nix
2024-11-05 09:11:22 +01:00
./i18n.nix
2024-11-22 12:21:55 +01:00
./overlays
2024-10-29 13:29:05 +01:00
];
2024-10-29 13:58:15 +01:00
boot.initrd.systemd.enable = true;
2024-11-10 11:11:23 +01:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2024-11-05 10:18:46 +01:00
hardware.enableRedistributableFirmware = true;
2024-11-22 09:41:31 +01:00
security.sudo.enable = false;
2024-10-29 13:29:05 +01:00
}