ci: fix
This commit is contained in:
parent
f871626e0a
commit
cd9f745ace
6 changed files with 100 additions and 52 deletions
|
|
@ -44,6 +44,8 @@ in
|
|||
mypy
|
||||
selene
|
||||
shellcheck
|
||||
deadnix
|
||||
statix
|
||||
|
||||
# runtime/tools
|
||||
nodejs
|
||||
|
|
|
|||
|
|
@ -69,47 +69,43 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
xdg.configFile."hypr/hyprlock.conf".text =
|
||||
let
|
||||
c = config.colors;
|
||||
in
|
||||
''
|
||||
general {
|
||||
hide_cursor = true
|
||||
grace = 0
|
||||
}
|
||||
xdg.configFile."hypr/hyprlock.conf".text = ''
|
||||
general {
|
||||
hide_cursor = true
|
||||
grace = 0
|
||||
}
|
||||
|
||||
background {
|
||||
monitor =
|
||||
path = ${config.xdg.userDirs.pictures}/Screensavers/lock.jpg
|
||||
}
|
||||
background {
|
||||
monitor =
|
||||
path = ${config.xdg.userDirs.pictures}/Screensavers/lock.jpg
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = false
|
||||
}
|
||||
animations {
|
||||
enabled = false
|
||||
}
|
||||
|
||||
input-field {
|
||||
monitor =
|
||||
size = 600, 50
|
||||
outline_thickness = 0
|
||||
dots_text_format = *
|
||||
dots_size = 0.9
|
||||
dots_spacing = 0.3
|
||||
dots_center = true
|
||||
outer_color = rgba(00000000)
|
||||
inner_color = rgba(00000000)
|
||||
font_color = rgb(ffffff)
|
||||
font_family = Berkeley Mono
|
||||
check_color = rgb(98c379)
|
||||
fail_color = rgb(ff6b6b)
|
||||
fail_text = $FAIL
|
||||
rounding = 0
|
||||
placeholder_text =
|
||||
position = 0, 0
|
||||
halign = center
|
||||
valign = center
|
||||
}
|
||||
'';
|
||||
input-field {
|
||||
monitor =
|
||||
size = 600, 50
|
||||
outline_thickness = 0
|
||||
dots_text_format = *
|
||||
dots_size = 0.9
|
||||
dots_spacing = 0.3
|
||||
dots_center = true
|
||||
outer_color = rgba(00000000)
|
||||
inner_color = rgba(00000000)
|
||||
font_color = rgb(ffffff)
|
||||
font_family = Berkeley Mono
|
||||
check_color = rgb(98c379)
|
||||
fail_color = rgb(ff6b6b)
|
||||
fail_text = $FAIL
|
||||
rounding = 0
|
||||
placeholder_text =
|
||||
position = 0, 0
|
||||
halign = center
|
||||
valign = center
|
||||
}
|
||||
'';
|
||||
|
||||
services.hypridle = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,4 @@
|
|||
{ pkgs, config, ... }:
|
||||
|
||||
let
|
||||
c = config.colors;
|
||||
in
|
||||
{ config, ... }:
|
||||
{
|
||||
home.sessionVariables = {
|
||||
TERMINAL = "ghostty";
|
||||
|
|
|
|||
|
|
@ -2,13 +2,10 @@
|
|||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
hostConfig,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
c = config.colors;
|
||||
|
||||
mkWaybarTheme = palette: ''
|
||||
* { color: ${palette.fg}; }
|
||||
window#waybar { background: ${palette.bg}; border-bottom: 2px solid ${palette.bgAlt}; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue