23 lines
361 B
Nix
23 lines
361 B
Nix
{ config, lib, ... }:
|
|
{
|
|
imports = [
|
|
./boot
|
|
./disko
|
|
./filesystems
|
|
./hardware
|
|
./services
|
|
./users
|
|
../../modules/system
|
|
];
|
|
|
|
networking = {
|
|
hostName = "pear";
|
|
wireless.enable = true;
|
|
wg-quick.interfaces.wgc.address = [ "10.100.0.18/24" ];
|
|
};
|
|
|
|
system = {
|
|
desktop.enable = true;
|
|
stateVersion = "24.11";
|
|
};
|
|
}
|