mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-12 00:43:25 -05:00
12 lines
No EOL
236 B
Nix
12 lines
No EOL
236 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
./audio.nix
|
|
./boot.nix
|
|
];
|
|
|
|
options = {
|
|
physical = lib.mkEnableOption "Whether this machine is a physical device.";
|
|
server = lib.mkEnableOption "Whether this machine is a server.";
|
|
};
|
|
} |