mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
23 lines
390 B
Nix
23 lines
390 B
Nix
{ lib, ... }:
|
|
{
|
|
|
|
imports = [
|
|
./audio.nix
|
|
./boot.nix
|
|
./disk.nix
|
|
./keyboard.nix
|
|
./monitors.nix
|
|
./mouse.nix
|
|
./networking.nix
|
|
./server.nix
|
|
./sleep.nix
|
|
./wifi.nix
|
|
./zfs.nix
|
|
];
|
|
|
|
options = {
|
|
physical = lib.mkEnableOption "Whether this machine is a physical device.";
|
|
server = lib.mkEnableOption "Whether this machine is a server.";
|
|
};
|
|
}
|