dotfiles/systems/laptop/default.nix

15 lines
281 B
Nix
Raw Normal View History

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