Added hetzner server configs
This commit is contained in:
+10
-8
@@ -8,16 +8,18 @@
|
||||
gsettings-desktop-schemas
|
||||
];
|
||||
|
||||
programs.dconf.enable = true;
|
||||
programs.dconf.enable = true;
|
||||
|
||||
programs.dconf.profiles.user.databases = [{
|
||||
settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
gtk-application-prefer-dark-theme = true;
|
||||
programs.dconf.profiles.user.databases = [
|
||||
{
|
||||
settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
gtk-application-prefer-dark-theme = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}];
|
||||
}
|
||||
];
|
||||
|
||||
environment.sessionVariables = {
|
||||
XDG_ICON_DIR = "${pkgs.whitesur-icon-theme}/share/icons/WhiteSur";
|
||||
|
||||
@@ -2,13 +2,10 @@
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
configFile = "mpv/mpv.conf";
|
||||
}: let
|
||||
configFile = "mpv/mpv.conf";
|
||||
mpvInputFile = "mpv/input.conf";
|
||||
in
|
||||
{
|
||||
in {
|
||||
users.users.someone.packages = with pkgs; [
|
||||
mpv
|
||||
mpvScripts.mpris
|
||||
@@ -16,12 +13,11 @@ in
|
||||
|
||||
xdg.configFile."${configFile}".text =
|
||||
lib.generators.toKeyValue {
|
||||
mkKeyValue = k: v:
|
||||
"${lib.escapeShellArg k}=${lib.escapeShellArg v}";
|
||||
mkKeyValue = k: v: "${lib.escapeShellArg k}=${lib.escapeShellArg v}";
|
||||
listsAsDuplicateKeys = true;
|
||||
} {
|
||||
profile = "gpu-hq";
|
||||
volume = "100";
|
||||
volume = "100";
|
||||
};
|
||||
|
||||
xdg.configFile."${mpvInputFile}".text = ''
|
||||
|
||||
@@ -18,7 +18,7 @@ in {
|
||||
{
|
||||
"type" = "ladspa";
|
||||
"name" = "rnnoise";
|
||||
"plugin" = "librnnoise_ladspa";
|
||||
"plugin" = "librnnoise_ladspa";
|
||||
"label" = "noise_suppressor_stereo";
|
||||
"control" = {"VAD Threshold (%)" = 50.0;};
|
||||
}
|
||||
|
||||
@@ -71,5 +71,5 @@
|
||||
"Mod+Shift+Up".move-column-to-workspace-up = {};
|
||||
"Mod+Shift+Down".move-column-to-workspace-down = {};
|
||||
"Mod+P" = {spawn-sh = "wl-mirror $(niri msg --json focused-output | jq -r .name)";};
|
||||
# "Mod+Alt".toggle-overview = { repeat=false; };
|
||||
# "Mod+Alt".toggle-overview = { repeat=false; };
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
{
|
||||
geometry-corner-radius._args = [8.0 8.0 12.0 12.0];
|
||||
clip-to-geometry = true;
|
||||
draw-border-with-background = false;
|
||||
draw-border-with-background = false;
|
||||
}
|
||||
{
|
||||
match._props = {is-floating = true;};
|
||||
|
||||
@@ -48,7 +48,7 @@ in {
|
||||
|
||||
screenshot-path = "~/Pictures/Screenshots/Screenshot-from-%Y-%m-%d-%H-%M-%S.png";
|
||||
|
||||
overview = {
|
||||
overview = {
|
||||
workspace-shadow.off = {};
|
||||
backdrop-color = "transparent";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user