diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-05 16:47:35 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-05 16:47:35 -0700 |
commit | 608deed2aaa88f88cb9230b9132294581b63bbab (patch) | |
tree | 702df49d0581bdfe2da66ccac315c9b262dca1de /hosts/carmel | |
parent | waybar: fix colors for the workspaces (diff) | |
download | world-608deed2aaa88f88cb9230b9132294581b63bbab.tar.gz |
sound: add a new module
This is the start of yet another refactoring of the configuration. Sound configuration is moving to a module, and we enable it as needed at the host level. It takes care of configuring pipewire and install the packages needed too. This module is applied to the laptop and the desktop.
Diffstat (limited to '')
-rw-r--r-- | hosts/carmel/default.nix | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix index 0234e90..ecc8362 100644 --- a/hosts/carmel/default.nix +++ b/hosts/carmel/default.nix @@ -1,13 +1,13 @@ { config, pkgs, hostname, ... }: { - imports = - [ # Include the results of the hardware scan. - ./hardware-configuration.nix - ../common/desktop - # In order to unlock the root disk remotely - ../common/system/boot-ssh.nix - ]; + imports = [ # Include the results of the hardware scan. + ./hardware-configuration.nix + ./sound.nix + ../common/desktop + # In order to unlock the root disk remotely + ../common/system/boot-ssh.nix + ]; boot = { # get an IP address on boot, so we can unlock the root disk remotely @@ -27,13 +27,11 @@ networks = { enp9s0 = { matchConfig.Name = "enp9s0"; - networkConfig = { - DHCP = "yes"; - }; + networkConfig = { DHCP = "yes"; }; extraConfig = '' - [DHCPv4] - UseDNS=yes - UseDomains=yes + [DHCPv4] + UseDNS=yes + UseDomains=yes ''; }; }; |