1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-06-08 04:59:29 +00:00
This commit is contained in:
Rae 5e 2025-06-02 22:50:45 -04:00
parent 9e7e438323
commit 8ec5885b26
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
5 changed files with 82 additions and 120 deletions

View file

@ -4,6 +4,7 @@
./hardware-configuration.nix
./packages.nix
../base.nix
../../modules/system
];
r5e.system = {

View file

@ -24,6 +24,7 @@
mesonlsp # Meson
nil # Nix
rust-analyzer # Rust
typescript-language-server # TS/JS
vala-language-server # Vala
# games
alvr # Stream VR games from your PC to your headset via Wi-Fi

View file

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