nixos/modules/shell/aria/default.nix
2024-08-01 16:24:09 +04:00

23 lines
469 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.shell.aria;
in
{
options.modules.shell.aria= {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
aria
];
# home-manager.users.sako = { pkgs, ...}: {
# xdg.configFile = {
# aria = {
# source = ../../../config/aria;
# recursive = true;
# };
# };
# };
};
}