feat(flake): Added subflake

So as to not specify fetchFromGitHub commit hashes
Added mullvad packages
This commit is contained in:
uttarayan21
2024-03-25 20:35:16 +05:30
parent 8497db7318
commit 7ebb723857
12 changed files with 486 additions and 40 deletions

View File

@@ -41,9 +41,13 @@ in {
config = {
home.packages = mkIf cfg.enable [pkgs.goread];
xdg.configFile = mkIf cfg.enable {
"goread/urls.yml".text = generators.toYAML {} cfg.config.urls;
# "goread/colorscheme.json".text = lib.generators.toJSON cfg.config.colorscheme;
# xdg.configFile = mkIf cfg.enable {
# "goread/urls.yml".text = generators.toYAML {} cfg.config.urls;
# # "goread/colorscheme.json".text = lib.generators.toJSON cfg.config.colorscheme;
# };
# Possibly fixes it on macos
home.file = {
".config/goread/urls.yml".text = generators.toYAML {} cfg.config.urls;
};
};
}