chore: prepare config structure for multiple hosts
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
(import ../base.nix {
|
||||
inherit
|
||||
inputs
|
||||
outputs
|
||||
config
|
||||
lib
|
||||
pkgs
|
||||
;
|
||||
})
|
||||
(import ./hardware-configuration.nix {
|
||||
inherit lib;
|
||||
})
|
||||
];
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
#services.printing.enable = true;
|
||||
|
||||
# Enable firmware
|
||||
#hardware.enableAllFirmware = true;
|
||||
|
||||
# Enable bluetooth
|
||||
#hardware.bluetooth.enable = true;
|
||||
|
||||
# Enable sound with pipewire.
|
||||
# security.rtkit.enable = true;
|
||||
# services.pipewire = {
|
||||
# enable = true;
|
||||
# alsa.enable = true;
|
||||
# alsa.support32Bit = true;
|
||||
# pulse.enable = true;
|
||||
# };
|
||||
|
||||
networking.hostName = "desktop";
|
||||
}
|
||||
Reference in New Issue
Block a user