mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 14:54:26 -05:00
25 lines
420 B
Nix
25 lines
420 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment = {
|
|
sessionVariables = {
|
|
NIXOS_OZONE_WL = "1";
|
|
QT_QPA_PLATFORMTHEME = "qt6ct";
|
|
QT_STYLE_OVERRIDE = "kvantum";
|
|
QT_QPA_PLATFORM="xcb";
|
|
};
|
|
};
|
|
|
|
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.fira-code
|
|
];
|
|
|
|
services.xserver.displayManager.gdm.enable = true; # We are pre 25.11
|
|
|
|
programs = {
|
|
hyprland.enable = true;
|
|
firefox.enable = true;
|
|
};
|
|
}
|