mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
21 lines
658 B
Nix
21 lines
658 B
Nix
# An extended version of the headless profile from nixpkgs. We're only covering
|
|
# the most basic settings here. This will be used both for desktop and server
|
|
# systems.
|
|
{ lib, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
"${modulesPath}/profiles/headless.nix"
|
|
];
|
|
|
|
# Bluetooth is so 2000s, my wireless earbuds are scratching all to hell.
|
|
hardware.bluetooth.enable = lib.mkDefault false;
|
|
|
|
# You can draw from your imagination instead.
|
|
hardware.opentabletdriver.enable = lib.mkDefault false;
|
|
|
|
# Printers? In our godforsaken headless setups. (Ok there are servers that
|
|
# handle this but you know...)
|
|
services.printing.enable = lib.mkDefault false;
|
|
}
|