mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
15 lines
271 B
Nix
Executable file
15 lines
271 B
Nix
Executable file
{lib, ...}: {
|
|
imports =
|
|
map
|
|
(file: ./${file}.nix)
|
|
[
|
|
"boot"
|
|
"filesystem"
|
|
"graphics"
|
|
"hardware"
|
|
"networking"
|
|
"sops"
|
|
];
|
|
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
|
|
system.stateVersion = lib.mkForce "24.05";
|
|
}
|