chore: cleanup home manager
This commit is contained in:
parent
0b39a7a000
commit
fb2619d2d5
118
home-manager.nix
118
home-manager.nix
|
@ -40,9 +40,7 @@
|
||||||
#
|
#
|
||||||
# /etc/profiles/per-user/wizardlink/etc/profile.d/hm-session-vars.sh
|
# /etc/profiles/per-user/wizardlink/etc/profile.d/hm-session-vars.sh
|
||||||
# if you don't want to manage your shell through Home Manager.
|
# if you don't want to manage your shell through Home Manager.
|
||||||
home.sessionVariables = {
|
home.sessionVariables = { };
|
||||||
WLR_NO_HARDWARE_CURSORS = "1";
|
|
||||||
};
|
|
||||||
|
|
||||||
##
|
##
|
||||||
## PACKAGES #
|
## PACKAGES #
|
||||||
|
@ -139,82 +137,74 @@
|
||||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||||
# plain files is through 'home.file'.
|
# plain files is through 'home.file'.
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/fish/themes/Catppuccin-Frappe.theme" = {
|
# Cattpuccin theme for fish shell.
|
||||||
source = ./programs/fish/Catppuccin-Frappe.theme;
|
".config/fish/themes/Catppuccin-Frappe.theme".source = ./programs/fish/Catppuccin-Frappe.theme;
|
||||||
};
|
|
||||||
|
|
||||||
".config/gamemode.ini" = {
|
# Configuration for gamemode, for running games with optimizations.
|
||||||
source = ./programs/gamemode.ini;
|
".config/gamemode.ini".source = ./programs/gamemode.ini;
|
||||||
};
|
|
||||||
|
|
||||||
".config/mako" = {
|
# Configuration for mako, a notification daemon.
|
||||||
source = ./programs/mako;
|
".config/mako".source = ./programs/mako;
|
||||||
};
|
|
||||||
|
|
||||||
".config/nvim" = {
|
# Configuration for neovim, my editor.
|
||||||
source = ./programs/nvim;
|
".config/nvim".source = ./programs/nvim;
|
||||||
};
|
|
||||||
|
|
||||||
|
## Kvantum's theme configuration.
|
||||||
".config/Kvantum/Catppuccin-Frappe-Lavender" = {
|
".config/Kvantum/Catppuccin-Frappe-Lavender" = {
|
||||||
source = "${pkgs.catppuccin-kvantum.override { accent = "Lavender"; variant = "Frappe"; } }/share/Kvantum/Catppuccin-Frappe-Lavender";
|
source = "${pkgs.catppuccin-kvantum.override { accent = "Lavender"; variant = "Frappe"; } }/share/Kvantum/Catppuccin-Frappe-Lavender";
|
||||||
};
|
};
|
||||||
|
|
||||||
".config/Kvantum/kvantum.kvconfig" = {
|
".config/Kvantum/kvantum.kvconfig".text = ''
|
||||||
text = ''
|
[General]
|
||||||
[General]
|
theme=Catppuccin-Frappe-Lavender
|
||||||
theme=Catppuccin-Frappe-Lavender
|
'';
|
||||||
'';
|
##
|
||||||
};
|
|
||||||
|
|
||||||
".config/qt5ct/colors" = {
|
## Themeing configuration for qt5 and qt6
|
||||||
source = ./theming/qt5ct;
|
".config/qt5ct/colors".source = ./theming/qt5ct;
|
||||||
};
|
|
||||||
|
|
||||||
".config/qt6ct/colors" = {
|
".config/qt6ct/colors".source = ./theming/qt5ct; # We use the qt5ct because it's the SAME spec
|
||||||
source = ./theming/qt5ct; # We use the qt5ct because it's the SAME spec
|
##
|
||||||
};
|
|
||||||
|
|
||||||
".config/pipewire/pipewire.conf.d/99-input-denoising.conf" = {
|
# Configure pipewire for microphone noise supression.
|
||||||
text = ''
|
".config/pipewire/pipewire.conf.d/99-input-denoising.conf".text = ''
|
||||||
context.modules = [
|
context.modules = [
|
||||||
{ name = libpipewire-module-filter-chain
|
{ name = libpipewire-module-filter-chain
|
||||||
args = {
|
args = {
|
||||||
node.description = "Noise Canceling source"
|
node.description = "Noise Canceling source"
|
||||||
media.name = "Noise Canceling source"
|
media.name = "Noise Canceling source"
|
||||||
filter.graph = {
|
filter.graph = {
|
||||||
nodes = [
|
nodes = [
|
||||||
{
|
{
|
||||||
type = ladspa
|
type = ladspa
|
||||||
name = rnnoise
|
name = rnnoise
|
||||||
plugin = ${pkgs.rnnoise-plugin}/lib/ladspa/librnnoise_ladspa.so
|
plugin = ${pkgs.rnnoise-plugin}/lib/ladspa/librnnoise_ladspa.so
|
||||||
label = noise_suppressor_mono
|
label = noise_suppressor_mono
|
||||||
control = {
|
control = {
|
||||||
"VAD Threshold (%)" = 30.0
|
"VAD Threshold (%)" = 30.0
|
||||||
"VAD Grace Period (ms)" = 300
|
"VAD Grace Period (ms)" = 300
|
||||||
"Retroactive VAD Grace (ms)" = 0
|
"Retroactive VAD Grace (ms)" = 0
|
||||||
}
|
}
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
capture.props = {
|
|
||||||
node.name = "capture.rnnoise_source"
|
|
||||||
node.passive = true
|
|
||||||
audio.rate = 48000
|
|
||||||
}
|
|
||||||
playback.props = {
|
|
||||||
node.name = "rnnoise_source"
|
|
||||||
media.class = Audio/Source
|
|
||||||
audio.rate = 48000
|
|
||||||
}
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
capture.props = {
|
||||||
|
node.name = "capture.rnnoise_source"
|
||||||
|
node.passive = true
|
||||||
|
audio.rate = 48000
|
||||||
|
}
|
||||||
|
playback.props = {
|
||||||
|
node.name = "rnnoise_source"
|
||||||
|
media.class = Audio/Source
|
||||||
|
audio.rate = 48000
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
'';
|
'';
|
||||||
};
|
|
||||||
|
|
||||||
".local/share/scripts" = {
|
# My utility scripts
|
||||||
source = ./scripts;
|
".local/share/scripts".source = ./scripts;
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue