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:
parent
58bc04d360
commit
2566b6da29
13 changed files with 191 additions and 33 deletions
30
nixos/hosts/marquet/configuration.nix
Normal file
30
nixos/hosts/marquet/configuration.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue