refactor: clean up systems

This commit is contained in:
Mohammad Rafiq 2025-03-26 23:08:01 +08:00
parent 68d4e2c04c
commit 8c237b9604
No known key found for this signature in database
3 changed files with 13 additions and 13 deletions

35
systems/desktop.nix Normal file
View file

@ -0,0 +1,35 @@
{ inputs, ... }:
{
imports = [
../themes/cursors/banana-cursor.nix
../themes/darkviolet.nix
../themes/fonts/sauce-code-pro.nix
./modules/programs/getty.nix
./modules/programs/hyprland.nix
./modules/programs/hyprlock.nix
inputs.stylix.nixosModules.stylix
./modules/hardware/bluetooth.nix
];
# Enable basic fonts for reasonable Unicode coverage
fonts.enableDefaultPackages = true;
stylix = {
enable = true;
image = ../../media/wallpaper.jpg;
homeManagerIntegration.autoImport = false;
homeManagerIntegration.followSystem = false;
};
security.rtkit.enable = true;
services.pipewire = {
enable = true;
extraConfig = { };
jack.enable = true;
pulse.enable = true;
alsa = {
enable = true;
support32Bit = true;
};
};
}