mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:03:55 -05:00
15 lines
274 B
Nix
15 lines
274 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ # Include X settings.
|
|
./desktop.nix
|
|
];
|
|
|
|
programs.hyprland.enable = true;
|
|
services.power-profiles-daemon.enable = true;
|
|
services.upower.enable = true;
|
|
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
}
|