From 90b5d970beb1217383dcde87a2c8bc08104f3492 Mon Sep 17 00:00:00 2001 From: twoneis Date: Sat, 13 Jan 2024 05:44:31 +0100 Subject: [PATCH] minor changes --- modules/system/audio.nix | 6 +----- modules/system/{docker.nix => containers.nix} | 0 modules/system/default.nix | 3 ++- 3 files changed, 3 insertions(+), 6 deletions(-) rename modules/system/{docker.nix => containers.nix} (100%) diff --git a/modules/system/audio.nix b/modules/system/audio.nix index a02fe5e..2725221 100644 --- a/modules/system/audio.nix +++ b/modules/system/audio.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{ ... }: { # Enable sound with pipewire. sound.enable = true; hardware.pulseaudio.enable = false; @@ -9,8 +9,4 @@ pulse.enable = true; #jack.enable = true; }; - - environment.systemPackages = with pkgs; [ - pamixer - ]; } diff --git a/modules/system/docker.nix b/modules/system/containers.nix similarity index 100% rename from modules/system/docker.nix rename to modules/system/containers.nix diff --git a/modules/system/default.nix b/modules/system/default.nix index 2692205..c958f38 100644 --- a/modules/system/default.nix +++ b/modules/system/default.nix @@ -5,12 +5,13 @@ { pkgs, ... }: { imports = [ ./audio.nix - ./docker.nix + ./containers.nix ./fonts.nix ./gnome ./niri ]; + # Allow packages from nixpkgs nixpkgs.config = { allowUnfree = true;