Compare commits

...

3 commits

Author SHA1 Message Date
chayleaf b8b3b7fbff
home: disable qt5ct 2024-11-24 13:48:45 +07:00
chayleaf 52e3509a4a
todo amend fix unbound metrics 2024-11-24 13:48:31 +07:00
chayleaf 99cd2240a5
todo amend libolm 2024-11-24 13:47:03 +07:00
4 changed files with 9 additions and 2 deletions

View file

@ -197,7 +197,7 @@ config = lib.mkMerge [
}; };
programs.yt-dlp.enable = true; programs.yt-dlp.enable = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
qt5ct qgnomeplatform qgnomeplatform
qbittorrent mumble qbittorrent mumble
keepassxc nheko nextcloud-client keepassxc nheko nextcloud-client
# cli tools # cli tools

View file

@ -60,6 +60,10 @@
chatty chatty
]; ];
nixpkgs.config.permittedInsecurePackages = [
"olm-3.2.16"
];
programs.sway.enable = true; programs.sway.enable = true;
xdg.portal = { xdg.portal = {
enable = true; enable = true;

View file

@ -20,7 +20,7 @@ in {
unbound = { unbound = {
enable = true; enable = true;
# controlInterface = "/run/unbound/unbound.ctl"; # controlInterface = "/run/unbound/unbound.ctl";
host = "unix:///run/unbound/unbound.ctl"; unbound.host = "unix:///run/unbound/unbound.ctl";
listenAddress = netAddresses.lan4; listenAddress = netAddresses.lan4;
group = config.services.unbound.group; group = config.services.unbound.group;
}; };

View file

@ -32,4 +32,7 @@ in {
levenshtein levenshtein
pillow pillow
]; ];
nixpkgs.config.permittedInsecurePackages = [
"olm-3.2.16"
];
} }