update flake inputs

This commit is contained in:
ulic-youthlic 2025-03-15 08:15:07 +08:00
parent e3333290f0
commit d08e080d16
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
10 changed files with 139 additions and 62 deletions

View file

@ -5,6 +5,11 @@
image = rootPath + "/assets/wallpaper/01.png";
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/ayu-dark.yaml";
cursor = {
package = pkgs.rose-pine-cursor;
name = "BreezeX-RosePineDawn-Linux";
size = 24;
};
fonts = {
serif = {
package = pkgs.lxgw-wenkai;

View file

@ -1,27 +1,6 @@
{ pkgs, rootPath, ... }:
{ ... }:
{
stylix = {
enable = true;
image = rootPath + "/assets/wallpaper/01.png";
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/ayu-dark.yaml";
fonts = {
serif = {
package = pkgs.lxgw-wenkai;
name = "LXGW WenKai";
};
sansSerif = {
package = pkgs.noto-fonts-cjk-serif;
name = "Noto Serif CJK SC";
};
monospace = {
package = pkgs.nerd-fonts.fira-code;
name = "FiraCode Nerd Font";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
};
enable = false;
};
}

View file

@ -5,6 +5,11 @@
image = rootPath + "/assets/wallpaper/01.png";
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/ayu-dark.yaml";
cursor = {
package = pkgs.rose-pine-cursor;
name = "BreezeX-RosePineDawn-Linux";
size = 32;
};
fonts = {
serif = {
package = pkgs.lxgw-wenkai;

View file

@ -1,4 +1,9 @@
{ config, lib, ... }:
{
pkgs,
config,
lib,
...
}:
let
cfg = config.youthlic.containers.forgejo;
in
@ -59,6 +64,8 @@ in
./../programs/postgresql.nix
];
nixpkgs.pkgs = pkgs;
systemd.tmpfiles.rules = [
"d /var/lib/forgejo 770 forgejo forgejo -"
"d /var/lib/postgresql 770 postgres postgres -"

View file

@ -1,4 +1,9 @@
{ config, lib, ... }:
{
pkgs,
config,
lib,
...
}:
let
cfg = config.youthlic.containers.miniflux;
in
@ -41,6 +46,8 @@ in
./../programs/postgresql.nix
];
nixpkgs.pkgs = pkgs;
systemd.tmpfiles.rules = [
"d /var/lib/miniflux 770 miniflux miniflux -"
"d /var/lib/postgresql 770 postgres postgres -"