Compare commits

..

No commits in common. "656978d0449bed0f870bf44a1cf88bc29f038a90" and "2db048eb5a58340824411639b00689ec62a3aa9c" have entirely different histories.

10 changed files with 17 additions and 31 deletions

View file

@ -1,7 +1,6 @@
{pkgs, ... }: {pkgs, ... }:
let {
kbd_file = pkgs.writeText "gpdwinmax.kbd" home.file.".xkb/symbols/gpdwinmax".text = ''
''
default partial alphanumeric_keys default partial alphanumeric_keys
xkb_symbols "us-intl-winmax" { xkb_symbols "us-intl-winmax" {
name[group1] = "GPD Win Max us-inlt"; name[group1] = "GPD Win Max us-inlt";
@ -11,12 +10,10 @@ let
# include "level3(ralt_switch)" # include "level3(ralt_switch)"
}; };
''; '';
in
{
wayland.windowManager.sway.checkConfig = false;
wayland.windowManager.sway.config.input = { wayland.windowManager.sway.config.input = {
"1:1:AT_Translated_Set_2_keyboard" = { "1:1:AT_Translated_Set_2_keyboard" = {
xkb_layout = "${kbd_file}"; xkb_layout = "gpdwinmax";
}; };
"1046:928:Goodix_Capacitive_TouchScreen" = { "1046:928:Goodix_Capacitive_TouchScreen" = {
map_to_output = "eDP-1"; map_to_output = "eDP-1";

View file

@ -1,16 +1,15 @@
_: { _: {
wayland.windowManager.sway.checkConfig = false;
wayland.windowManager.sway.config.output = { wayland.windowManager.sway.config.output = {
"Iiyama North America PL2792UH 1166310803122" = { "Iiyama North America PL2792UH 1166310803122" = {
mode = "3840x2160@60Hz"; mode = "3840x2160@60Hz";
position = "1235,0"; position = "1080,0";
scale = "1.75"; scale = "2";
bg = "~/medias/images/wallpapers/desktop.jpg center #000000"; bg = "~/medias/images/wallpapers/desktop.jpg center #000000";
}; };
"Iiyama North America PL2792UH 1176923201598" = { "Iiyama North America PL2792UH 1176923201598" = {
mode = "3840x2160@60Hz"; mode = "3840x2160@60Hz";
position = "0,0"; position = "0,0";
scale = "1.75"; scale = "2";
transform = "270"; transform = "270";
bg = "~/medias/images/wallpapers/desktop.jpg center #000000"; bg = "~/medias/images/wallpapers/desktop.jpg center #000000";
}; };

Binary file not shown.

Before

Width:  |  Height:  |  Size: 637 KiB

View file

@ -24,7 +24,6 @@
gaming.lutris.enable = true; gaming.lutris.enable = true;
desktop.sway = { desktop.sway = {
enable = true; enable = true;
wallpapers.lockscreen = "${./files/lockscreen.png}";
kanshi = true; kanshi = true;
waybar = { waybar = {
laptop = true; laptop = true;

View file

@ -1,5 +1,4 @@
{ ... }: { { ... }: {
config.modules.desktop.sway.enable = true;
config.modules.gaming.steam.enable = true; config.modules.gaming.steam.enable = true;
config.modules.hardware.laptop.enable = true; config.modules.hardware.laptop.enable = true;
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 265 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

View file

@ -1,16 +1,11 @@
{ ... }: { { ... }: {
config.modules = { config.modules = {
application = { application = {
gnupg.enable = true;
zathura.enable = true; zathura.enable = true;
foot.enable = true; foot.enable = true;
}; };
cli = { cli = {
direnv.enable = true;
ghq.enable = true;
git.enable = true;
neovim.enable = true; neovim.enable = true;
utils.enable = true;
vifm.enable = true; vifm.enable = true;
zsh.enable = true; zsh.enable = true;
}; };
@ -25,8 +20,6 @@
desktop.sway = { desktop.sway = {
enable = true; enable = true;
kanshi = false; kanshi = false;
wallpapers.lockscreen = "${./files/lockscreen.png}";
wallpapers.desktop = "${./files/wallpaper.jpg} center #000000";
waybar = { waybar = {
laptop = false; laptop = false;
gpuThermal = { gpuThermal = {

View file

@ -1,5 +1,4 @@
{ ... }: { { ... }: {
config.modules.desktop.sway.enable = true;
config.modules.gaming.steam = { config.modules.gaming.steam = {
enable = true; enable = true;
gamemode = true; gamemode = true;

View file

@ -21,8 +21,8 @@ in
}; };
desktop = mkOption { desktop = mkOption {
type = types.str; type = types.str;
default = "#000000 solid_color"; default = "";
description = "options for desktop wallpaper"; description = "path for desktop wallpaper";
}; };
}; };