overheating: set scale of login screen to 2.0

This commit is contained in:
DashieTM 2024-05-17 12:54:52 +02:00
parent fcf4fc3064
commit d79f636669
6 changed files with 30 additions and 6 deletions

View file

@ -45,7 +45,7 @@ in
environment.etc."greetd/hyprgreet.conf".text = ''
exec-once=gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
monitor=${config.programs.ironbar.monitor},3440x1440@180,0x0,1
monitor=${config.programs.ironbar.monitor},3440x1440@180,0x0,${config.programs.ironbar.scale}
monitor=_,disable
input {

View file

@ -7,7 +7,7 @@
"eDP-1,2944x1840@90,0x0,2"
# all others
",highrr,auto,1"
",highres,auto,1"
];
programs.ironbar.monitor = "eDP-1";
programs.ironbar.battery = [

View file

@ -7,5 +7,8 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "overheating";
programs.ironbar.monitor = "eDP-1";
programs.ironbar.scale = "2.0";
programs.boot.boot_params = [ ];
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
}

View file

@ -5,7 +5,15 @@
example = "eDP-1";
type = lib.types.str;
description = ''
Extra settings for foo.
main monitor
'';
};
scale = lib.mkOption {
default = "1.0";
example = "1.0";
type = lib.types.str;
description = ''
Scale for the monitor
'';
};

View file

@ -25,6 +25,13 @@
#yaml
yamlfmt
yamllint
yaml-language-server
#markdown
marksman
#html
html-tidy
#json
jsonfmt
@ -32,6 +39,7 @@
#css
tailwindcss
tailwindcss-language-server
nodePackages_latest.vscode-css-languageserver-bin
#editors
neovide
@ -74,6 +82,7 @@
dotnet-sdk_8
omnisharp-roslyn
csharpier
netcoredbg
#zig
zig

View file

@ -118,6 +118,10 @@ return {
yamlls = {
mason = false,
},
cssls = {
mason = false,
cmd = { "css-languageserver", '--stdio' },
},
lua_ls = {
mason = false,
{