add: strawberry
This commit is contained in:
17
modules/home/programs/graphical/strawberry/default.nix
Executable file
17
modules/home/programs/graphical/strawberry/default.nix
Executable file
@@ -0,0 +1,17 @@
|
||||
{ pkgs, lib, config, namespace, ... }:
|
||||
let
|
||||
inherit (lib) mkIf mkEnableOption;
|
||||
cfg = config.${namespace}.programs.graphical.strawberry;
|
||||
in
|
||||
{
|
||||
options.${namespace}.programs.graphical.strawberry = {
|
||||
enable = mkEnableOption "Enable Strawberry";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
strawberry
|
||||
libgpod
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user