From 836989a34b816cc5eeb0a688e6cb144a7f1e65d8 Mon Sep 17 00:00:00 2001 From: Ari Gerus Date: Tue, 19 Dec 2023 09:36:07 +0100 Subject: [PATCH] m/graphical: enable easyeffects by default --- modules/graphical.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/modules/graphical.nix b/modules/graphical.nix index cf539cd..a527cbb 100644 --- a/modules/graphical.nix +++ b/modules/graphical.nix @@ -15,7 +15,15 @@ let ${util-linux}/bin/rfkill unblock 0 ''; in { - imports = [ inputs.self.nixosModules.common ]; + imports = [ inputs.self.nixosModules.common inputs.home-manager.nixosModule ]; + + home-manager.users.ar = { + home.username = "ar"; + home.homeDirectory = "/home/ar"; + home.stateVersion = config.system.stateVersion; + }; + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; boot = { extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ]; @@ -39,6 +47,8 @@ in { pulse.enable = true; }; + home-manager.users.ar.services.easyeffects.enable = true; + networking.networkmanager.enable = true; networking.networkmanager.wifi.backend = "wpa_supplicant"; systemd.network.wait-online.enable = false;