mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 08:42:55 +00:00
d021baa1bb
required because they don't share all attributes
20 lines
345 B
Nix
20 lines
345 B
Nix
{ lib, ... }: {
|
|
|
|
imports = [
|
|
./audio.nix
|
|
./boot.nix
|
|
./keyboard.nix
|
|
./monitors.nix
|
|
./mouse.nix
|
|
./networking.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.";
|
|
};
|
|
|
|
}
|