18 lines
242 B
Nix
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";
|
|
};
|
|
}
|