This commit is contained in:
2026-03-03 23:06:45 +01:00
parent e3b903d010
commit dc14b13420
45 changed files with 611 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{ ... }: {
flake.nixosModules.desktop-sys-bluetooth = {
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
};
}

View File

@@ -0,0 +1,8 @@
{ ... }: {
flake.nixosModules.desktop-sys-fonts = { pkgs-unstable, ... }: {
environment.systemPackages = with pkgs-unstable; [
ibm-plex
adwaita-fonts
];
};
}

View File

@@ -0,0 +1,16 @@
{ ... }: {
flake.nixosModules.desktop-sys-gpu-amd = { pkgs, ... }: {
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "amdgpu" ];
hardware.amdgpu.initrd.enable = true;
hardware.graphics = {
enable = true;
enable32Bit = true;
};
environment.systemPackages = with pkgs; [
vulkan-tools
];
};
}

View File

@@ -0,0 +1,5 @@
{ ... }: {
flake.nixosModules.desktop-sys-input = {
services.libinput.enable = true;
};
}

View File

@@ -0,0 +1,9 @@
{ ... }: {
flake.nixosModules.desktop-sys-miscapps = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
vesktop
pciutils
aha
];
};
}

View File

@@ -0,0 +1,5 @@
{ ... }: {
flake.nixosModules.desktop-sys-printing = {
services.printing.enable = true;
};
}

View File

@@ -0,0 +1,10 @@
{ ... }: {
flake.nixosModules.desktop-sys-sound = { ... }: {
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
};
}