From 7e9a2d6b30d2de15fe48d7bd13f69d36cf8241cb Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Mon, 24 Jun 2024 17:07:19 +0200 Subject: [PATCH] Add config for laptop GDM login screen --- nixos-configurations/laptop/default.nix | 28 ++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/nixos-configurations/laptop/default.nix b/nixos-configurations/laptop/default.nix index e2f2e1a..8c90075 100644 --- a/nixos-configurations/laptop/default.nix +++ b/nixos-configurations/laptop/default.nix @@ -10,12 +10,38 @@ networking.hostName = "laptop"; - services.mysql = { enable = true; package = pkgs.mariadb; }; + systemd.tmpfiles.rules = [ + "L+ /run/gdm/.config/monitors.xml - - - - ${pkgs.writeText "gdm-monitors.xml" '' + + + + 0 + 0 + 1 + + + eDP-1 + BOE + 0x074f + 0x00000000 + + + 1920 + 1080 + 60.012 + + + + + + ''}" + ]; + home-manager.users.thiloho = { pkgs, ... }: { programs.git.signing.key = "5CF074CA31DD6686"; home = { stateVersion = "23.05"; };