Compare commits
7 commits
2db048eb5a
...
656978d044
Author | SHA1 | Date | |
---|---|---|---|
656978d044 | |||
15f02d84e2 | |||
d6cf3f11a3 | |||
0e3faccc53 | |||
98f0144732 | |||
e37f418f55 | |||
6810fb5e3f |
10 changed files with 31 additions and 17 deletions
BIN
hosts/morty/files/lockscreen.png
Normal file
BIN
hosts/morty/files/lockscreen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 637 KiB |
|
@ -24,6 +24,7 @@
|
|||
gaming.lutris.enable = true;
|
||||
desktop.sway = {
|
||||
enable = true;
|
||||
wallpapers.lockscreen = "${./files/lockscreen.png}";
|
||||
kanshi = true;
|
||||
waybar = {
|
||||
laptop = true;
|
||||
|
|
|
@ -1,19 +1,22 @@
|
|||
{pkgs, ... }:
|
||||
{
|
||||
home.file.".xkb/symbols/gpdwinmax".text = ''
|
||||
default partial alphanumeric_keys
|
||||
xkb_symbols "us-intl-winmax" {
|
||||
let
|
||||
kbd_file = pkgs.writeText "gpdwinmax.kbd"
|
||||
''
|
||||
default partial alphanumeric_keys
|
||||
xkb_symbols "us-intl-winmax" {
|
||||
name[group1] = "GPD Win Max us-inlt";
|
||||
include "us(altgr-intl)"
|
||||
key <TAB> { [ Multi_key ] };
|
||||
key <CAPS> { [ Tab ] };
|
||||
# include "level3(ralt_switch)"
|
||||
};
|
||||
};
|
||||
'';
|
||||
|
||||
in
|
||||
{
|
||||
wayland.windowManager.sway.checkConfig = false;
|
||||
wayland.windowManager.sway.config.input = {
|
||||
"1:1:AT_Translated_Set_2_keyboard" = {
|
||||
xkb_layout = "gpdwinmax";
|
||||
xkb_layout = "${kbd_file}";
|
||||
};
|
||||
"1046:928:Goodix_Capacitive_TouchScreen" = {
|
||||
map_to_output = "eDP-1";
|
|
@ -1,4 +1,5 @@
|
|||
{ ... }: {
|
||||
config.modules.desktop.sway.enable = true;
|
||||
config.modules.gaming.steam.enable = true;
|
||||
config.modules.hardware.laptop.enable = true;
|
||||
}
|
||||
|
|
BIN
hosts/mrmeeseeks/files/lockscreen.png
Normal file
BIN
hosts/mrmeeseeks/files/lockscreen.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 265 KiB |
BIN
hosts/mrmeeseeks/files/wallpaper.jpg
Normal file
BIN
hosts/mrmeeseeks/files/wallpaper.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 61 KiB |
|
@ -1,11 +1,16 @@
|
|||
{ ... }: {
|
||||
config.modules = {
|
||||
application = {
|
||||
gnupg.enable = true;
|
||||
zathura.enable = true;
|
||||
foot.enable = true;
|
||||
};
|
||||
cli = {
|
||||
direnv.enable = true;
|
||||
ghq.enable = true;
|
||||
git.enable = true;
|
||||
neovim.enable = true;
|
||||
utils.enable = true;
|
||||
vifm.enable = true;
|
||||
zsh.enable = true;
|
||||
};
|
||||
|
@ -20,6 +25,8 @@
|
|||
desktop.sway = {
|
||||
enable = true;
|
||||
kanshi = false;
|
||||
wallpapers.lockscreen = "${./files/lockscreen.png}";
|
||||
wallpapers.desktop = "${./files/wallpaper.jpg} center #000000";
|
||||
waybar = {
|
||||
laptop = false;
|
||||
gpuThermal = {
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
_: {
|
||||
wayland.windowManager.sway.checkConfig = false;
|
||||
wayland.windowManager.sway.config.output = {
|
||||
"Iiyama North America PL2792UH 1166310803122" = {
|
||||
mode = "3840x2160@60Hz";
|
||||
position = "1080,0";
|
||||
scale = "2";
|
||||
position = "1235,0";
|
||||
scale = "1.75";
|
||||
bg = "~/medias/images/wallpapers/desktop.jpg center #000000";
|
||||
};
|
||||
"Iiyama North America PL2792UH 1176923201598" = {
|
||||
mode = "3840x2160@60Hz";
|
||||
position = "0,0";
|
||||
scale = "2";
|
||||
scale = "1.75";
|
||||
transform = "270";
|
||||
bg = "~/medias/images/wallpapers/desktop.jpg center #000000";
|
||||
};
|
|
@ -1,4 +1,5 @@
|
|||
{ ... }: {
|
||||
config.modules.desktop.sway.enable = true;
|
||||
config.modules.gaming.steam = {
|
||||
enable = true;
|
||||
gamemode = true;
|
||||
|
|
|
@ -21,8 +21,8 @@ in
|
|||
};
|
||||
desktop = mkOption {
|
||||
type = types.str;
|
||||
default = "";
|
||||
description = "path for desktop wallpaper";
|
||||
default = "#000000 solid_color";
|
||||
description = "options for desktop wallpaper";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue