wip: new emacs
This commit is contained in:
18
modules/home/openutau.nix
Normal file
18
modules/home/openutau.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let cfg = config.sydnix.openutau;
|
||||
in {
|
||||
options.sydnix.openutau = {
|
||||
enable = lib.mkEnableOption "OpenUTAU";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = [
|
||||
pkgs.openutau
|
||||
];
|
||||
|
||||
sydnix.impermanence.directories = [
|
||||
".local/share/OpenUtau"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user