mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-06-07 12:39:29 +00:00
30 lines
480 B
Nix
30 lines
480 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../base.nix
|
|
../../modules/system
|
|
];
|
|
|
|
r5e.system = {
|
|
graphics = {
|
|
display.x11 = {
|
|
enable = true;
|
|
windowManagers = {
|
|
twm.enable = true;
|
|
};
|
|
displayManager.autologin = {
|
|
enable = false;
|
|
session = "none+twm";
|
|
};
|
|
};
|
|
hardwareAcceleration = {
|
|
enable = true;
|
|
intel.videoPlayback = {
|
|
enable = true;
|
|
package = pkgs.intel-vaapi-driver;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|