apps migrated

This commit is contained in:
2026-03-03 22:42:00 +01:00
parent a2cc89d028
commit e3b903d010
47 changed files with 3 additions and 608 deletions

View File

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

View File

@@ -1,13 +0,0 @@
{ inputs, ... }: {
flake.nixosModules.desktop = {
imports = with inputs.self.nixosModules; [
bluetooth
fonts
gpu-amd
input
printing
sound
miscapps
];
};
}

View File

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

View File

@@ -1,16 +0,0 @@
{ ... }: {
flake.nixosModules.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

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

View File

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

View File

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

View File

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