Compare commits

..

No commits in common. "ce7b147d0496f3ce80211197449df0cd62595756" and "98c9424db58bf94b9f0ee60a22ed5ba19575d0e5" have entirely different histories.

8 changed files with 8 additions and 37 deletions

View file

@ -99,9 +99,6 @@
# I think this is because of zen
"qtwebengine-5.15.19"
# For Nheko, the matrix client
"olm-3.2.16"
];
};

View file

@ -35,7 +35,6 @@
bitwarden.enable = true;
discord.enable = true;
ladybird.enable = true;
nheko.enable = true;
obs.enable = true;
onlyoffice.enable = true;
signal.enable = true;

View file

@ -1,15 +0,0 @@
{ config, lib, pkgs, namespace, osConfig ? {}, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.application.nheko;
in
{
options.${namespace}.application.nheko = {
enable = mkEnableOption "enable nheko (matrix client)";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [ nheko ];
};
}

View file

@ -4,9 +4,7 @@ let
in
{
systemd.user.startServices = "sd-switch";
programs.home-manager = {
enable = true;
};
programs.home-manager.enable = true;
home.stateVersion = mkDefault (osConfig.system.stateVersion or "25.05");
}

View file

@ -1,6 +0,0 @@
{ ... }:
{
config = {
home-manager.backupFileExtension = "back";
};
}

View file

@ -11,10 +11,8 @@ in
};
config = mkIf cfg.enable {
${namespace}.services = {
persistance.postgresql.enable = true;
virtualisation.podman.enable = true;
};
${namespace}.services.virtualisation.podman.enable = true;
${namespace}.services.persistance.postgresql.enable = true;
environment.systemPackages = with pkgs; [ forgejo ];

View file

@ -2,10 +2,10 @@
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.services.persistance.postgresql;
cfg = config.${namespace}.services.peristance.postgresql;
in
{
options.${namespace}.services.persistance.postgresql = {
options.${namespace}.services.peristance.postgresql = {
enable = mkEnableOption "Postgresql";
};