mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
090684d8f5
Signed-off-by: Magic_RB <magic_rb@redalder.org>
55 lines
1 KiB
Nix
55 lines
1 KiB
Nix
{ pkgs, lib, ... }:
|
|
let
|
|
inherit (lib)
|
|
getExe
|
|
singleton;
|
|
in
|
|
{
|
|
xdg.portal = {
|
|
enable = true;
|
|
xdgOpenUsePortal = true;
|
|
extraPortals = singleton pkgs.xdg-desktop-portal-gtk;
|
|
};
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
|
|
windowManager = {
|
|
xmonad.enable = true;
|
|
xmonad.enableContribAndExtras = true;
|
|
};
|
|
|
|
displayManager = {
|
|
lightdm.enable = true;
|
|
defaultSession = "none+xmonad";
|
|
};
|
|
|
|
libinput = {
|
|
enable = true;
|
|
};
|
|
|
|
layout = "de,de,mine,us";
|
|
xkbVariant = "koy,neo_qwerty,mine,";
|
|
xkbOptions = "ctrl:swap_lalt_lctl_lwin, altwin:menu_win, grp:sclk_toggle";
|
|
|
|
extraLayouts."neo_qwerty" = {
|
|
description = "QWERTY neo2 layout.";
|
|
languages = ["de"];
|
|
symbolsFile = ./qwerty_neo.xkb;
|
|
};
|
|
|
|
extraLayouts."mine" = {
|
|
description = "mine neo layout.";
|
|
languages = ["de"];
|
|
symbolsFile = ./mine.xkb;
|
|
};
|
|
};
|
|
|
|
hardware = {
|
|
opengl.enable = true;
|
|
opengl.driSupport32Bit = true;
|
|
};
|
|
|
|
console.useXkbConfig = true;
|
|
}
|