12 lines
133 B
Nix
12 lines
133 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./desktop
|
||
|
./hardware
|
||
|
./server
|
||
|
|
||
|
# Common configuration
|
||
|
./common.nix
|
||
|
];
|
||
|
}
|