{pkgs, ...}: { nixpkgs.config.allowUnfree = true; host = { users = { leyla = { isDesktopUser = true; isTerminalUser = true; isPrincipleUser = true; }; ester.isDesktopUser = true; eve.isDesktopUser = true; }; hardware = { piperMouse.enable = true; viaKeyboard.enable = true; openRGB.enable = true; graphicsAcceleration.enable = true; }; }; systemd.tmpfiles.rules = [ "L+ /run/gdm/.config/monitors.xml - - - - ${pkgs.writeText "gdm-monitors.xml" '' 0 156 1 DP-4 DEL DELL U2719D 8RGXNS2 2560 1440 59.951 2560 324 1 yes DP-2 GSM LG ULTRAGEAR 0x00068c96 1920 1080 240.001 4480 0 1 left no HDMI-0 HWP HP w2207 CND7332S88 1600 1000 59.999 0 0 1 yes DP-1 DEL DELL U2719D 8RGXNS2 2560 1440 59.951 4480 226 1 left no HDMI-1 HWP HP w2207 CND7332S88 1680 1050 59.954 2560 226 1 DP-2 GSM LG ULTRAGEAR 0x00068c96 1920 1080 240.001 2560 228 1 yes DP-2 GSM LG ULTRAGEAR 0x00068c96 1920 1080 240.001 4480 69 1 left no HDMI-1 HWP HP w2207 CND7332S88 1680 1050 59.954 0 0 1 DP-3 DEL DELL U2719D 8RGXNS2 2560 1440 59.951 None-1 unknown unknown unknown ''}" ]; # enabled virtualisation for docker # virtualisation.docker.enable = true; # Enable touchpad support (enabled default in most desktopManager). # services.xserver.libinput.enable = true; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It's perfectly fine and recommended to leave # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "23.05"; # Did you read the comment? }