Compare commits

...

2 Commits

Author SHA1 Message Date
3b40ecbad1 Add roles to boxy 2024-09-07 18:28:03 -07:00
8b311d4ed0 Explicitly setup pipewire 2024-09-07 18:27:52 -07:00
2 changed files with 8 additions and 0 deletions

View File

@@ -8,7 +8,10 @@
imports = imports =
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../roles/common/default.nix
../../roles/nix/default.nix ../../roles/nix/default.nix
(import ../../roles/kodi/default.nix { autologin = true; inherit lib; inherit pkgs; })
(import ../../roles/users/default.nix { extraGroups = []; })
]; ];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.

View File

@@ -17,6 +17,11 @@
# Enable the OpenSSH daemon. # Enable the OpenSSH daemon.
services.openssh.enable = true; services.openssh.enable = true;
service.pipewire = {
enable = true;
pulse.enabld = true;
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
git git