mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Started creating a (currently) unusable hyprland config
This commit is contained in:
parent
0aa71f9662
commit
0b9d486385
6 changed files with 146 additions and 5 deletions
23
system/wm/wayland.nix
Normal file
23
system/wm/wayland.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./pipewire.nix
|
||||
./dbus.nix
|
||||
./gnome-keyring.nix
|
||||
./fonts.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = [ pkgs.wayland ];
|
||||
|
||||
# Configure xwayland
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
layout = "us";
|
||||
xkbVariant = "";
|
||||
xkbOptions = "caps:escape";
|
||||
displayManager.gdm = {
|
||||
enable = true;
|
||||
wayland = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue