nixos-config/hosts/Earthmover/default.nix
2025-07-20 13:02:43 -04:00

22 lines
No EOL
317 B
Nix

{ config, ... }:
{
imports = [
./hardware-configuration.nix
../../common
../../common/desktop
../../modules/common
../../modules/nixos
];
home-manager.users.wo2w = {
imports = [
../../modules/home
];
home.stateVersion = "25.05";
};
system.stateVersion = "25.05";
}