mirror of
https://github.com/RGBCube/ncc
synced 2025-07-31 12:07:48 +00:00
Lint it all (code review) at 00:00
This commit is contained in:
parent
f44b372ed6
commit
effef516c4
5 changed files with 6 additions and 7 deletions
|
@ -21,8 +21,8 @@ homeConfiguration "nixos" {
|
||||||
alignment = "center";
|
alignment = "center";
|
||||||
font = "OpenSans 12";
|
font = "OpenSans 12";
|
||||||
|
|
||||||
origin = "top-center";
|
|
||||||
offset = "0x20";
|
offset = "0x20";
|
||||||
|
origin = "top-center";
|
||||||
};
|
};
|
||||||
|
|
||||||
settings.urgency_low = {
|
settings.urgency_low = {
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.helix = enabled {
|
programs.helix = enabled {
|
||||||
|
|
||||||
settings.theme = "gruvbox_dark_hard";
|
settings.theme = "gruvbox_dark_hard";
|
||||||
|
|
||||||
settings.editor = {
|
settings.editor = {
|
||||||
|
@ -26,14 +25,14 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
settings.editor.statusline.mode = {
|
settings.editor.statusline.mode = {
|
||||||
normal = "NORMAL";
|
|
||||||
insert = "INSERT";
|
insert = "INSERT";
|
||||||
|
normal = "NORMAL";
|
||||||
select = "SELECT";
|
select = "SELECT";
|
||||||
};
|
};
|
||||||
|
|
||||||
settings.editor.whitespace = {
|
settings.editor.whitespace = {
|
||||||
render.tab = "all";
|
|
||||||
characters.tab = "→";
|
characters.tab = "→";
|
||||||
|
render.tab = "all";
|
||||||
};
|
};
|
||||||
|
|
||||||
settings.keys.normal.D = "extend_to_line_end";
|
settings.keys.normal.D = "extend_to_line_end";
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
dunstctl close-all;
|
dunstctl close-all;
|
||||||
|
|
||||||
volume_float=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | sed 's/Volume: //' )
|
volume_float=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | sed "s/Volume: //")
|
||||||
dunstify --timeout 1000 "$(awk "BEGIN { print($volume_float * 100) }")%"
|
dunstify --timeout 1000 "$(awk "BEGIN { print($volume_float * 100) }")%"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ systemConfiguration, ... }:
|
{ systemConfiguration, ... }:
|
||||||
|
|
||||||
systemConfiguration {
|
systemConfiguration {
|
||||||
console.keyMap = "trq";
|
console.keyMap = "trq";
|
||||||
|
|
||||||
time.timeZone = "Europe/Istanbul";
|
time.timeZone = "Europe/Istanbul";
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,9 @@ systemConfiguration {
|
||||||
sound = enabled {};
|
sound = enabled {};
|
||||||
|
|
||||||
services.pipewire = enabled {
|
services.pipewire = enabled {
|
||||||
pulse = enabled {};
|
|
||||||
alsa = enabled {
|
alsa = enabled {
|
||||||
support32Bit = true;
|
support32Bit = true;
|
||||||
};
|
};
|
||||||
|
pulse = enabled {};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue