Add boilerplate services and packages modules

This commit is contained in:
Joshua Yuen 2025-07-29 13:46:59 -04:00
parent 8b4de6cf40
commit c5705a372f
Signed by: josh
GPG Key ID: 502720BC22ED411C
3 changed files with 16 additions and 1 deletions

View File

@ -13,6 +13,7 @@
./pipewire.nix ./pipewire.nix
./plasma.nix ./plasma.nix
./sddm.nix ./sddm.nix
./services.nix
./stylix.nix ./stylix.nix
./system.nix ./system.nix
./user.nix ./user.nix

View File

@ -4,5 +4,11 @@
... ...
}: }:
{ {
programs = {
};
environment.systemPackages = with pkgs; [
];
} }

View File

@ -0,0 +1,8 @@
{
...
}:
{
services = {
};
}