chore: lint

This commit is contained in:
Leonardo Eugênio 2026-06-14 21:54:15 -03:00
parent 7d609e91f9
commit be3ef81253
8 changed files with 17 additions and 17 deletions

View file

@ -26,10 +26,10 @@
gamescope gamescope
# gamescope compatibility?? # gamescope compatibility??
xorg.libXcursor libxcursor
xorg.libXi libxi
xorg.libXinerama libxinerama
xorg.libXScrnSaver libxscrnsaver
libpng libpng
libpulseaudio libpulseaudio
libvorbis libvorbis

View file

@ -7,7 +7,7 @@
{ {
programs.thunar = { programs.thunar = {
enable = true; enable = true;
plugins = with pkgs.xfce; [ plugins = with pkgs; [
thunar-archive-plugin thunar-archive-plugin
thunar-volman thunar-volman
]; ];

View file

@ -2,7 +2,6 @@
{ {
projectRootFile = "flake.nix"; projectRootFile = "flake.nix";
programs.nixfmt.enable = true; programs.nixfmt.enable = true;
programs.nixfmt.package = pkgs.nixfmt-rfc-style;
settings.on-unmatched = "debug"; settings.on-unmatched = "debug";
} }

View file

@ -17,6 +17,7 @@ in
config = { config = {
programs.firefox = { programs.firefox = {
enable = true; enable = true;
configPath = ".mozilla/firefox";
package = pkgs.wrapFirefox bugfixedFirefox { package = pkgs.wrapFirefox bugfixedFirefox {
nixExtensions = [ nixExtensions = [
(pkgs.fetchFirefoxAddon { (pkgs.fetchFirefoxAddon {

View file

@ -100,7 +100,7 @@
python3Packages.python-slugify python3Packages.python-slugify
par par
mate.engrampa engrampa
# gnome.nautilus # gnome.nautilus
## Theming ## Theming
@ -134,7 +134,7 @@
rust-analyzer # rust analyzer rust-analyzer # rust analyzer
unstable.blade-formatter unstable.blade-formatter
nixfmt-rfc-style nixfmt
nix-output-monitor nix-output-monitor
]; ];

View file

@ -3,16 +3,16 @@
programs.ssh = { programs.ssh = {
enable = true; enable = true;
enableDefaultConfig = false; enableDefaultConfig = false;
matchBlocks = { settings = {
monolith = { monolith = {
user = "lelgenio"; User = "lelgenio";
hostname = "monolith.lelgenio.com"; HostName = "monolith.lelgenio.com";
port = 9022; Port = 9022;
}; };
phantom = { phantom = {
user = "root"; User = "root";
hostname = "phantom.lelgenio.com"; HostName = "phantom.lelgenio.com";
port = 9022; Port = 9022;
}; };
}; };
includes = [ "~/Wopus/.ssh.config" ]; includes = [ "~/Wopus/.ssh.config" ];

View file

@ -1,9 +1,8 @@
{ pkgs, config, ... }: { pkgs, config, ... }:
{ {
programs.vscode = { programs.vscodium = {
enable = true; enable = true;
package = pkgs.vscodium;
profiles.default.extensions = with pkgs.vscode-extensions; [ profiles.default.extensions = with pkgs.vscode-extensions; [
jnoortheen.nix-ide jnoortheen.nix-ide
github.github-vscode-theme github.github-vscode-theme

View file

@ -10,6 +10,7 @@ in
userDirs = { userDirs = {
enable = true; enable = true;
createDirectories = true; createDirectories = true;
setSessionVariables = true;
desktop = "${HOME}/Área de trabalho"; desktop = "${HOME}/Área de trabalho";
documents = "${HOME}/Documentos"; documents = "${HOME}/Documentos";