use unstable nixos
This commit is contained in:
@ -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; [
|
||||
|
@ -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"];
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user