refactor all youthlic.programs to ./nixos/modules/programs

This commit is contained in:
ulic-youthlic 2025-01-28 20:37:39 +08:00
parent 7a043f826a
commit 2dbda657ee
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
15 changed files with 18 additions and 12 deletions

View file

@ -17,24 +17,13 @@
]) ])
++ [ ++ [
./containers ./containers
./postgresql.nix
./forgejo.nix
./deploy ./deploy
./nix.nix ./nix.nix
./home.nix ./home.nix
./sops.nix ./sops.nix
./dae
./openssh.nix
./nh.nix
./i18n.nix ./i18n.nix
./gui ./gui
./steam.nix ./programs
./tailscale.nix
./kanata.nix
./kvm.nix
./open-webui.nix
./transmission.nix
./caddy.nix
]; ];
config = { config = {

View file

@ -0,0 +1,17 @@
{ config, lib, ... }:
{
imports = [
./caddy.nix
./dae
./forgejo.nix
./kanata.nix
./kvm.nix
./nh.nix
./open-webui.nix
./openssh.nix
./postgresql.nix
./steam.nix
./tailscale.nix
./transmission.nix
];
}