feat(modules/graphical): add pulsemixer package
This commit is contained in:
parent
62d3c501ae
commit
f7593078fd
2 changed files with 19 additions and 0 deletions
|
@ -14,6 +14,7 @@ in
|
||||||
imports = [
|
imports = [
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
|
./programs/default.nix
|
||||||
./programs/editor.nix
|
./programs/editor.nix
|
||||||
./programs/de.nix
|
./programs/de.nix
|
||||||
];
|
];
|
||||||
|
|
18
modules/hm/programs/default.nix
Normal file
18
modules/hm/programs/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
username = config.nixosModules.mainUser;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
config = lib.mkMerge [
|
||||||
|
{
|
||||||
|
home-manager.users."${username}".home.packages = with pkgs; [
|
||||||
|
pulsemixer
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue