1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-06-07 12:39:29 +00:00
.dotfiles/nixos/hosts/marquet/configuration.nix
roxwize 2566b6da29
~
Signed-off-by: roxwize <rae@roxwize.xyz>
2025-05-26 13:34:45 -04:00

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;
};
};
};
};
}