1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-06-08 13:09:29 +00:00
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
Rae 5e 2025-05-26 13:34:45 -04:00
parent 58bc04d360
commit 2566b6da29
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
13 changed files with 191 additions and 33 deletions

View file

@ -0,0 +1,30 @@
{ 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;
};
};
};
};
}