Compare commits

..

10 commits

Author SHA1 Message Date
0c40e210f4 idk 2026-04-20 05:38:41 +07:00
49d5c51357 idk 2026-04-20 05:38:25 +07:00
d9f2ed8f2c idk 2026-04-20 05:37:46 +07:00
1baf17728f idk 2026-04-20 05:37:04 +07:00
a40239264c idk 2026-04-20 05:36:47 +07:00
d1d3299883 add forgejo web catppuccin theme 2026-04-20 05:34:15 +07:00
fc6a9c9fde idk 2026-04-20 05:14:21 +07:00
7d752d8290 idk 2026-04-20 05:12:26 +07:00
61fd1e6546 idk 2026-04-20 05:07:06 +07:00
8df15d275e idk 2026-04-20 05:03:40 +07:00
5 changed files with 11 additions and 3 deletions

View file

@ -10,6 +10,7 @@
niri.url = "github:sodiboo/niri-flake"; niri.url = "github:sodiboo/niri-flake";
nixcord.url = "github:FlameFlag/nixcord"; nixcord.url = "github:FlameFlag/nixcord";
winegdk.url = "github:fmbearmf/winegdk-nix"; winegdk.url = "github:fmbearmf/winegdk-nix";
catppuccin.url = "github:catppuccin/nix";
honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes/4a84e576bb544afbdfc76dbe40ffc50a5c2b16de"; honkai-railway-grub-theme.url = "github:voidlhf/StarRailGrubThemes/4a84e576bb544afbdfc76dbe40ffc50a5c2b16de";

View file

@ -1,4 +1,9 @@
{libs, ...}: { {
lib,
libs,
inputs,
...
}: {
imports = [ imports = [
./device.nix ./device.nix
./programs.nix ./programs.nix

View file

@ -7,10 +7,12 @@
isSystemUser = true; isSystemUser = true;
}; };
users.users.git = { users.users.forgejo = {
group = "forgejo"; group = "forgejo";
isSystemUser = true; isSystemUser = true;
useDefaultShell = true; useDefaultShell = true;
home = "/var/lib/forgejo";
createHome = false;
}; };
users.groups = { users.groups = {

View file

@ -10,7 +10,6 @@
START_SSH_SERVER = false; START_SSH_SERVER = false;
SSH_CREATE_AUTHORIZED_KEYS_FILE = true; SSH_CREATE_AUTHORIZED_KEYS_FILE = true;
SSH_DOMAIN = "server.asakiyuki.com"; SSH_DOMAIN = "server.asakiyuki.com";
SSH_USER = "git";
ROOT_URL = "https://git.asakiyuki.com/"; ROOT_URL = "https://git.asakiyuki.com/";
}; };
}; };

View file

@ -8,6 +8,7 @@
AllowUsers = [ AllowUsers = [
"asakiyuki" "asakiyuki"
"junko" "junko"
"forgejo"
]; ];
PasswordAuthentication = true; PasswordAuthentication = true;
KbdInteractiveAuthentication = false; KbdInteractiveAuthentication = false;