nixos-config/hosts/intuos/default.nix

22 lines
289 B
Nix

{ ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./network
./users
../../modules/system
];
networking = {
hostName = "intuos";
wireless.enable = true;
};
system = {
desktop.enable = true;
stateVersion = "24.11";
};
}