move
This commit is contained in:
15
home-manager/users/nix-on-droid/programs/pywal/default.nix
Normal file
15
home-manager/users/nix-on-droid/programs/pywal/default.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ config, lib, pkgs, inputs, ... }: {
|
||||
|
||||
options.homeconfig.wal.enable = lib.options.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
};
|
||||
|
||||
config = lib.mkIf config.homeconfig.wal.enable {
|
||||
|
||||
home.packages = with pkgs; [
|
||||
pywal16
|
||||
imagemagick
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user