From be3ef8125362a5fca1a44aad68dc84d13a5fc76c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sun, 14 Jun 2026 21:54:15 -0300 Subject: [PATCH] chore: lint --- system/gaming.nix | 8 ++++---- system/thunar.nix | 2 +- treefmt.nix | 1 - user/firefox.nix | 1 + user/home.nix | 4 ++-- user/ssh.nix | 14 +++++++------- user/vscode/default.nix | 3 +-- user/xdg-dirs.nix | 1 + 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/system/gaming.nix b/system/gaming.nix index fca2e20..a6e45be 100644 --- a/system/gaming.nix +++ b/system/gaming.nix @@ -26,10 +26,10 @@ gamescope # gamescope compatibility?? - xorg.libXcursor - xorg.libXi - xorg.libXinerama - xorg.libXScrnSaver + libxcursor + libxi + libxinerama + libxscrnsaver libpng libpulseaudio libvorbis diff --git a/system/thunar.nix b/system/thunar.nix index fcb9e3b..82cd561 100644 --- a/system/thunar.nix +++ b/system/thunar.nix @@ -7,7 +7,7 @@ { programs.thunar = { enable = true; - plugins = with pkgs.xfce; [ + plugins = with pkgs; [ thunar-archive-plugin thunar-volman ]; diff --git a/treefmt.nix b/treefmt.nix index 6c86ca2..5b1c7bf 100644 --- a/treefmt.nix +++ b/treefmt.nix @@ -2,7 +2,6 @@ { projectRootFile = "flake.nix"; programs.nixfmt.enable = true; - programs.nixfmt.package = pkgs.nixfmt-rfc-style; settings.on-unmatched = "debug"; } diff --git a/user/firefox.nix b/user/firefox.nix index 9f8ceb2..5c7a712 100644 --- a/user/firefox.nix +++ b/user/firefox.nix @@ -17,6 +17,7 @@ in config = { programs.firefox = { enable = true; + configPath = ".mozilla/firefox"; package = pkgs.wrapFirefox bugfixedFirefox { nixExtensions = [ (pkgs.fetchFirefoxAddon { diff --git a/user/home.nix b/user/home.nix index 165f956..bd0e83b 100644 --- a/user/home.nix +++ b/user/home.nix @@ -100,7 +100,7 @@ python3Packages.python-slugify par - mate.engrampa + engrampa # gnome.nautilus ## Theming @@ -134,7 +134,7 @@ rust-analyzer # rust analyzer unstable.blade-formatter - nixfmt-rfc-style + nixfmt nix-output-monitor ]; diff --git a/user/ssh.nix b/user/ssh.nix index e141477..c108060 100644 --- a/user/ssh.nix +++ b/user/ssh.nix @@ -3,16 +3,16 @@ programs.ssh = { enable = true; enableDefaultConfig = false; - matchBlocks = { + settings = { monolith = { - user = "lelgenio"; - hostname = "monolith.lelgenio.com"; - port = 9022; + User = "lelgenio"; + HostName = "monolith.lelgenio.com"; + Port = 9022; }; phantom = { - user = "root"; - hostname = "phantom.lelgenio.com"; - port = 9022; + User = "root"; + HostName = "phantom.lelgenio.com"; + Port = 9022; }; }; includes = [ "~/Wopus/.ssh.config" ]; diff --git a/user/vscode/default.nix b/user/vscode/default.nix index e9a97cb..b81b1f6 100644 --- a/user/vscode/default.nix +++ b/user/vscode/default.nix @@ -1,9 +1,8 @@ { pkgs, config, ... }: { - programs.vscode = { + programs.vscodium = { enable = true; - package = pkgs.vscodium; profiles.default.extensions = with pkgs.vscode-extensions; [ jnoortheen.nix-ide github.github-vscode-theme diff --git a/user/xdg-dirs.nix b/user/xdg-dirs.nix index c4036c2..73fe942 100644 --- a/user/xdg-dirs.nix +++ b/user/xdg-dirs.nix @@ -10,6 +10,7 @@ in userDirs = { enable = true; createDirectories = true; + setSessionVariables = true; desktop = "${HOME}/Área de trabalho"; documents = "${HOME}/Documentos";