refactor: update configurations and fix inconsistent naming
Refactor various NixOS and home-manager configurations to improve consistency and readability. Correct naming inconsistencies, ensure proper indentation, and restructure Samba settings for better clarity and maintainability.
This commit is contained in:
parent
26b76063e1
commit
3953362456
17 changed files with 49 additions and 49 deletions
|
@ -196,7 +196,7 @@ in
|
|||
};
|
||||
smartcolumn = {
|
||||
enable = true;
|
||||
columnAt.languages = {
|
||||
setupOpts.custom_colorcolumn = {
|
||||
# this is a freeform module, it's `buftype = int;` for configuring column position
|
||||
nix = "110";
|
||||
ruby = "120";
|
||||
|
@ -228,7 +228,7 @@ in
|
|||
comment-nvim.enable = true;
|
||||
};
|
||||
|
||||
vim.spellChecking.languages = [
|
||||
vim.spellcheck.languages = [
|
||||
"en"
|
||||
"de"
|
||||
];
|
||||
|
|
|
@ -102,7 +102,10 @@ in
|
|||
};
|
||||
starship.enable = true;
|
||||
mosh.enable = true;
|
||||
vim.defaultEditor = true;
|
||||
vim = {
|
||||
defaultEditor = true;
|
||||
enable = true;
|
||||
};
|
||||
fish.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ in
|
|||
|
||||
config = mkIf cfg.enable {
|
||||
services = {
|
||||
gnome.tracker-miners.enable = lib.mkForce false;
|
||||
gnome.localsearch.enable = lib.mkForce false;
|
||||
|
||||
flatpak.enable = true;
|
||||
|
||||
|
@ -62,11 +62,11 @@ in
|
|||
|
||||
#security.tpm2.pkcs11.enable = true;
|
||||
|
||||
hardware.opengl = {
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
onevpl-intel-gpu
|
||||
vpl-gpu-rt
|
||||
intel-compute-runtime
|
||||
intel-media-driver # LIBVA_DRIVER_NAME=iHD
|
||||
#intel-vaapi-driver # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
|
||||
|
@ -118,8 +118,8 @@ in
|
|||
gimp
|
||||
git
|
||||
gnome-browser-connector
|
||||
gnome.cheese
|
||||
gnome.gnome-software
|
||||
cheese
|
||||
gnome-software
|
||||
gnomeExtensions.appindicator
|
||||
gnomeExtensions.autohide-battery
|
||||
gnomeExtensions.dash-to-panel
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue