Formatting
This commit is contained in:
parent
84663b7c20
commit
0fb8d131bf
6 changed files with 84 additions and 70 deletions
|
|
@ -18,7 +18,8 @@ in {
|
||||||
pkgs.wl-clipboard
|
pkgs.wl-clipboard
|
||||||
];
|
];
|
||||||
|
|
||||||
home.sessionVariables = mkIf cfg { #FIXME: migrate to hyprconf
|
home.sessionVariables = mkIf cfg {
|
||||||
|
#FIXME: migrate to hyprconf
|
||||||
QT_QPA_PLATFORM = "wayland";
|
QT_QPA_PLATFORM = "wayland";
|
||||||
SDL_VIDEODRIVER = "wayland";
|
SDL_VIDEODRIVER = "wayland";
|
||||||
XDG_SESSION_TYPE = "wayland";
|
XDG_SESSION_TYPE = "wayland";
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
{lib, osConfig, ...}: {
|
{
|
||||||
|
lib,
|
||||||
|
osConfig,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
wayland.windowManager.hyprland.settings = {
|
wayland.windowManager.hyprland.settings = {
|
||||||
xwayland = {
|
xwayland = {
|
||||||
force_zero_scaling = true;
|
force_zero_scaling = true;
|
||||||
|
|
@ -89,14 +93,15 @@
|
||||||
vrr = 1;
|
vrr = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
windowrule = [
|
windowrule =
|
||||||
|
[
|
||||||
"float, class:com.github.phase1geo.annotator"
|
"float, class:com.github.phase1geo.annotator"
|
||||||
"float, class:foot-somcli"
|
"float, class:foot-somcli"
|
||||||
"size >30% >30%, class:foot-somcli"
|
"size >30% >30%, class:foot-somcli"
|
||||||
] ++ lib.optionals osConfig.niksos.fingerprint [
|
]
|
||||||
|
++ lib.optionals osConfig.niksos.fingerprint [
|
||||||
"float, class:foot-fprintd"
|
"float, class:foot-fprintd"
|
||||||
];
|
];
|
||||||
#NOTE: Also check home/wayland/hyprland/binds + system/hardware/fingerprint
|
#NOTE: Also check home/wayland/hyprland/binds + system/hardware/fingerprint
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{osConfig, ...}:{
|
{osConfig, ...}: {
|
||||||
services.mako = {
|
services.mako = {
|
||||||
enable = osConfig.niksos.desktop.hyprland;
|
enable = osConfig.niksos.desktop.hyprland;
|
||||||
settings.defaultTimeout = 5000;
|
settings.defaultTimeout = 5000;
|
||||||
|
|
|
||||||
|
|
@ -10,10 +10,18 @@
|
||||||
|
|
||||||
niksos = {
|
niksos = {
|
||||||
bluetooth = false;
|
bluetooth = false;
|
||||||
desktop = { enable = false; hyprland = false; kde = false; };
|
desktop = {
|
||||||
|
enable = false;
|
||||||
|
hyprland = false;
|
||||||
|
kde = false;
|
||||||
|
};
|
||||||
fingerprint = false;
|
fingerprint = false;
|
||||||
games = false;
|
games = false;
|
||||||
graphics = { enable = false; intel = false; nvidia = false; };
|
graphics = {
|
||||||
|
enable = false;
|
||||||
|
intel = false;
|
||||||
|
nvidia = false;
|
||||||
|
};
|
||||||
neovim = false;
|
neovim = false;
|
||||||
portable = false;
|
portable = false;
|
||||||
server = false;
|
server = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue