Jafner.net/dotfiles/nixos/desktop/configuration.nix
Joey Hafner d002643347
Big update:
- WIP: Installer configuration to be used for portable or new systems.
- Add defaultApps (zen for links, codium for plain text).
- Refactor Ollama (AI) to skip model selection, WIP "codewriter" model.
- Password-manager: Switch to wayland package for rofi-rbw, increase lock timeout.
- Add mangohud config that shows FPS, frame time, throttling status in a horizontal layout below OW's HUD.
- Add nixGL config to use mesa and vulkan.
- Refactor configuration.nix as a "hub" file that just imports other files.
- amdgpu: Remove problematic amdvlk driver. Was causing misbehavior in Overwatch.
- gaming: Add gamescope and gamemode.
2024-12-12 00:00:08 -08:00

29 lines
597 B
Nix

{ ... }: {
imports = [
./hardware/amdgpu.nix
./hardware/audio.nix
./hardware/boot.nix
./hardware/filesystems.nix
./hardware/networking.nix
./hardware/peripherals.nix
./hardware/samba-client.nix
./services/flatpak.nix
./services/ollama.nix
./services/printing.nix
./services/ssh.nix
./sysconfig/desktop-environment.nix
./sysconfig/fonts.nix
./sysconfig/gaming.nix
./sysconfig/localization.nix
./sysconfig/nixos.nix
./sysconfig/user.nix
./sysconfig/ydotool.nix
];
# DO NOT CHANGE
system.stateVersion = "24.11";
}