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