dotfiles/systems/desktop/default.nix
2024-10-06 15:25:05 -05:00

13 lines
257 B
Nix
Executable file

{lib, ...}: {
imports = [
./boot.nix
./filesystem.nix
./graphics.nix
./hardware.nix
./networking.nix
./sops.nix
./ssh.nix
];
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
system.stateVersion = lib.mkForce "24.05";
}