Fixed Build Warnings

This commit is contained in:
kB01 2026-03-31 17:52:41 +02:00
parent 48d57c2c0b
commit 0f73a371f3
No known key found for this signature in database
8 changed files with 49 additions and 25 deletions

View file

@ -1,6 +1,6 @@
{ config, pkgs, lib, inputs, ... }:
{
imports = [
imports = [
#./ssh.nix
];
@ -14,7 +14,7 @@
keepassxc
pass-wayland
#veracrypt
protonvpn-gui
proton-vpn
# Media
freetube
blender
@ -37,9 +37,6 @@
fastfetch
];
suites.desktop.enable = true;
suites.desktop.waybar.enable = false;
services.syncthing.enable = true;
services.syncthing.extraOptions = [
"--config=/home/kb/.config/syncthing"
@ -53,7 +50,17 @@
programs.vim.enable = true;
programs.vim.defaultEditor = true;
gtk.gtk2.force = true;
suites.desktop.enable = true;
suites.desktop.waybar.enable = false;
# Fix Stylix Quirks
gtk.gtk2.force = true; # Force Overwrites Backup files
gtk.gtk4.theme = null;
# Stylix Config
stylix.autoEnable = true;
stylix.targets.firefox.profileNames = [ "default" ];
stylix.targets.qt.platform = "qtct";
home.stateVersion = "25.11";
}

View file

@ -1,9 +1,5 @@
{ config, pkgs, lib, inputs, ... }:
{
imports = [
./firefox.nix
./chromium.nix
];
home.username = "games";
home.homeDirectory = "/home/games";
home.packages = with pkgs; [
@ -15,7 +11,7 @@
# Security
keepassxc
veracrypt
protonvpn-gui
proton-vpn
# Media
inkscape
blender
@ -39,5 +35,20 @@
ripgrep
];
suites.desktop.enable = true;
# Fix Stylix Quirks
gtk.gtk2.force = true; # Force Overwrites Backup files
gtk.gtk4.theme = null;
# Stylix Config
stylix.autoEnable = true;
stylix.targets.waybar.enableLeftBackColors = true;
stylix.targets.waybar.enableCenterBackColors = true;
stylix.targets.waybar.enableRightBackColors = true;
stylix.targets.waybar.font = "sansSerif";
stylix.targets.firefox.profileNames = [ "default" ];
stylix.targets.qt.platform = "qtct";
home.stateVersion = "24.05";
}

View file

@ -34,7 +34,7 @@ in {
keepassxc
pass-wayland
veracrypt
protonvpn-gui
proton-vpn
mosh # Mobile Shell
# Media
freetube

View file

@ -6,12 +6,6 @@
home.username = "kb";
home.homeDirectory = "/home/kb";
nixpkgs.config.allowUnfree = false;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"ungoogled-chromium"
];
home.packages = with pkgs; [
# System
kdePackages.kate
@ -25,7 +19,7 @@
keepassxc
pass-wayland
veracrypt
protonvpn-gui
proton-vpn
# Media
freetube
inkscape
@ -81,7 +75,8 @@
suites.desktop.waybar.outputs = [ "DP-4" "DP-5" "DP-6" "DP-7" ];
# Fix Stylix Quirks
gtk.gtk2.force = true;
gtk.gtk2.force = true; # Force Overwrites Backup files
gtk.gtk4.theme = null;
# Stylix Config
stylix.autoEnable = true;

View file

@ -7,6 +7,21 @@
IdentitiesOnly=yes
'';
# Default SSH Config
programs.ssh.enableDefaultConfig = false; # Deprecated
programs.ssh.matchBlocks."*" = {
forwardAgent = false;
addKeysToAgent = "no";
compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
# SSH Shell Connections
programs.ssh.matchBlocks."master@pkpnafs-m1ni" = {
host = "pkpnafs";

View file

@ -20,7 +20,7 @@
keepassxc
pass-wayland
veracrypt
protonvpn-gui
proton-vpn
# Media
freetube
inkscape

View file

@ -3,7 +3,6 @@
config,
lib,
pkgs,
system,
...
}:
let
@ -40,4 +39,3 @@ in
};
};
}

View file

@ -3,7 +3,6 @@
config,
lib,
pkgs,
system,
...
}:
let
@ -35,4 +34,3 @@ in
};
};
}