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 = '' environment.etc."greetd/hyprgreet.conf".text = ''
exec-once=gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' 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 monitor=_,disable
input { input {

View file

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

View file

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

View file

@ -5,13 +5,21 @@
example = "eDP-1"; example = "eDP-1";
type = lib.types.str; type = lib.types.str;
description = '' 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
''; '';
}; };
battery = lib.mkOption { battery = lib.mkOption {
default = []; default = [ ];
example = []; example = [ ];
}; };
}; };
} }

View file

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

View file

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