nixos-config/hosts/pear/default.nix
2025-04-30 19:34:43 -04:00

18 lines
242 B
Nix

{ config, lib, ... }:
{
imports = [
./boot
./disko
./hardware
./services
./users
../../modules/system
];
networking.hostName = "pear";
system = {
desktop.enable = true;
stateVersion = "24.11";
};
}