nixos-config/config/default.nix

17 lines
446 B
Nix
Raw Normal View History

2024-11-10 10:11:23 +00:00
{ pkgs, nixos-config, ... }:
2024-11-09 14:02:26 +00:00
{
2024-10-29 12:29:05 +00:00
imports = [
"${nixos-config}/modules"
"${nixos-config}/services/tailscale.nix"
2024-10-30 08:06:52 +00:00
"${nixos-config}/services/openssh.nix"
2024-11-12 09:16:09 +00:00
"${nixos-config}/services/restic.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-10 10:11:23 +00:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2024-11-05 09:18:46 +00:00
hardware.enableRedistributableFirmware = true;
2024-10-29 12:29:05 +00:00
}