use unstable nixos

This commit is contained in:
2024-11-25 22:27:37 +01:00
parent aa819813ee
commit da10edad83
8 changed files with 52 additions and 111 deletions

View File

@ -18,8 +18,9 @@ in {
"L+ /opt/rocm/hip - - - - ${pkgs.rocmPackages.clr}"
];
hardware.opengl = {
hardware.graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
rocmPackages.clr.icd
amdvlk
@ -27,8 +28,6 @@ in {
extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
driSupport = true;
driSupport32Bit = true;
};
environment.systemPackages = with pkgs; [

View File

@ -26,10 +26,10 @@ in {
};
GTK = {
application_prefer_dark_theme = true;
cursor_theme_name = "capitaine-cursors-white";
font_name = "FiraCode Nerd Font 20";
icon_theme_name = "WhiteSur-dark";
theme_name = "WhiteSur-Dark";
cursor_theme_name = lib.mkForce "capitaine-cursors-white";
font_name = lib.mkForce "FiraCode Nerd Font 20";
icon_theme_name = lib.mkForce "WhiteSur-dark";
theme_name = lib.mkForce "WhiteSur-Dark";
};
commands = {
reboot = ["systemctl" "reboot"];

View File

@ -11,15 +11,14 @@ in {
};
config = lib.mkIf cfg.enable {
musnix = {
enable = true;
rtcqs.enable = true;
kernel.realtime = true;
kernel.packages = pkgs.linuxPackages-rt_latest;
};
# musnix = {
# enable = true;
# rtcqs.enable = true;
# kernel.realtime = true;
# kernel.packages = pkgs.linuxPackages-rt_latest;
# };
users.users.max.extraGroups = ["audio"];
sound.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;