From 668174569ee38f47bc3b121995cbecca4c68f393 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Sat, 25 Nov 2023 14:54:47 +0800 Subject: [PATCH] home, modules: add misc/mumble --- users/guanranwang/home-manager/modules/misc/mumble.nix | 3 +++ .../guanranwang/nixos/profiles/device-type/desktop/default.nix | 1 + 2 files changed, 4 insertions(+) create mode 100644 users/guanranwang/home-manager/modules/misc/mumble.nix diff --git a/users/guanranwang/home-manager/modules/misc/mumble.nix b/users/guanranwang/home-manager/modules/misc/mumble.nix new file mode 100644 index 0000000..9e571ec --- /dev/null +++ b/users/guanranwang/home-manager/modules/misc/mumble.nix @@ -0,0 +1,3 @@ +{pkgs, ...}: { + home.packages = [pkgs.mumble]; +} diff --git a/users/guanranwang/nixos/profiles/device-type/desktop/default.nix b/users/guanranwang/nixos/profiles/device-type/desktop/default.nix index 18a23be..00fed0e 100644 --- a/users/guanranwang/nixos/profiles/device-type/desktop/default.nix +++ b/users/guanranwang/nixos/profiles/device-type/desktop/default.nix @@ -33,6 +33,7 @@ "modules/lang/go.nix" "modules/wm/sway.nix" "modules/misc/irssi.nix" + "modules/misc/mumble.nix" ]; fonts.enableDefaultPackages = false;