mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
apps migrated
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.bluetooth = {
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
};
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{ inputs, ... }: {
|
||||
flake.nixosModules.desktop = {
|
||||
imports = with inputs.self.nixosModules; [
|
||||
bluetooth
|
||||
fonts
|
||||
gpu-amd
|
||||
input
|
||||
printing
|
||||
sound
|
||||
miscapps
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.fonts = { pkgs-unstable, ... }: {
|
||||
environment.systemPackages = with pkgs-unstable; [
|
||||
ibm-plex
|
||||
adwaita-fonts
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.input = {
|
||||
services.libinput.enable = true;
|
||||
};
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.miscapps = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
vesktop
|
||||
pciutils
|
||||
aha
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.printing = {
|
||||
services.printing.enable = true;
|
||||
};
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
{ ... }: {
|
||||
flake.nixosModules.sound = { ... }: {
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user