made music role.
This commit is contained in:
parent
41e6afa642
commit
360e4a227c
|
@ -35,10 +35,9 @@ inputs.home-manager.lib.homeManagerConfiguration {
|
|||
home.homeDirectory = /home/gabe;
|
||||
imports = [
|
||||
../roles/home-manager/terminal.nix
|
||||
../roles/home-manager/music.nix
|
||||
../modules/home-manager/common.nix
|
||||
../modules/home-manager/syncthing.nix
|
||||
../modules/home-manager/beets.nix
|
||||
../modules/home-manager/mpd/mpd.nix
|
||||
../modules/home-manager/email.nix
|
||||
../modules/home-manager/terminal/voice.nix
|
||||
];
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
mpdevil
|
||||
];
|
||||
}
|
15
roles/home-manager/music.nix
Normal file
15
roles/home-manager/music.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../../modules/home-manager/beets.nix
|
||||
../../modules/home-manager/mpd.nix
|
||||
../../modules/home-manager/beets.nix
|
||||
];
|
||||
home.packages = with pkgs; (lib.mkIf config.host.gui.enable [
|
||||
mpdevil
|
||||
]);
|
||||
}
|
Loading…
Reference in a new issue