1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00

chore: minor changes

This commit is contained in:
oddlama 2024-07-28 22:17:06 +02:00
parent c5b28787ef
commit 7d7ad83c9a
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
4 changed files with 8 additions and 13 deletions

View file

@ -102,12 +102,6 @@
template = "{{y}}/{{MM}}/{{filename}}";
};
theme.customCss = "";
thumbnail = {
colorspace = "p3";
jpegSize = 1440;
quality = 80;
webpSize = 250;
};
trash = {
days = 30;
enabled = true;

View file

@ -33,6 +33,7 @@ in {
"fritzbox"
"soundtouch"
"spotify"
"matter"
#"zha"
"mqtt"
];

View file

@ -4,7 +4,7 @@
...
}: {
# Needed in path for zsh-histdb
home.packages = [pkgs.sqlite];
home.packages = [pkgs.sqlite-interactive];
programs.zsh = {
enable = true;

View file

@ -14,12 +14,12 @@
];
extraOutputsToInstall = ["man" "doc" "devdoc"];
packages = with pkgs; [
git-lfs
d2
cloc
jq
python3
packages = [
pkgs.git-lfs
pkgs.d2
pkgs.cloc
pkgs.jq
pkgs.python3
];
};
}