dotfiles/systems/desktop/default.nix

16 lines
271 B
Nix
Raw Normal View History

2024-11-04 02:09:15 -06:00
{lib, ...}: {
imports =
map
(file: ./${file}.nix)
[
"boot"
"filesystem"
"graphics"
"hardware"
"networking"
"sops"
];
2024-10-06 15:25:05 -05:00
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
system.stateVersion = lib.mkForce "24.05";
}