forked from extern/nix-config
3e6f8e6563
Note that the modules are separated more to make it easier to use parts of the graphical configuration in NixOS containers.
21 lines
324 B
Nix
21 lines
324 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.hyprland.enable = true;
|
|
|
|
services.udisks2 = {
|
|
enable = true;
|
|
mountOnMedia = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
polkit_gnome
|
|
];
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.lightdm.enable = false;
|
|
excludePackages = [ pkgs.xterm ];
|
|
};
|
|
}
|