update config to new 25.11 options

This commit is contained in:
Fabian Montero 2026-02-13 00:08:14 -06:00
parent ac9f906948
commit c3511afc52
Signed by: fabian
GPG key ID: 8036F30EDBAC8447
7 changed files with 13 additions and 13 deletions

View file

@ -68,8 +68,10 @@ in {
programs.git = { programs.git = {
enable = true; enable = true;
userEmail = "fabian@posixlycorrect.com"; settings.user = {
userName = "Fabian Montero"; email = "fabian@posixlycorrect.com";
name = "Fabian Montero";
};
}; };
local = { local = {

View file

@ -34,7 +34,6 @@
nerd-fonts.jetbrains-mono nerd-fonts.jetbrains-mono
noto-fonts noto-fonts
noto-fonts-cjk-sans noto-fonts-cjk-sans
noto-fonts-emoji noto-fonts-color-emoji
noto-fonts-extra
]; ];
} }

View file

@ -6,7 +6,7 @@
with prev.lib; let with prev.lib; let
inherit (final) callPackage fetchpatch; inherit (final) callPackage fetchpatch;
in { in {
homepage = flakes.homepage.packages.${final.system}.default; homepage = flakes.homepage.packages.${final.stdenv.hostPlatform.system}.default;
override = override =
{ {

View file

@ -58,8 +58,7 @@ in {
nerd-fonts.jetbrains-mono nerd-fonts.jetbrains-mono
noto-fonts noto-fonts
noto-fonts-cjk-sans noto-fonts-cjk-sans
noto-fonts-emoji noto-fonts-color-emoji
noto-fonts-extra
nerd-fonts.fira-code nerd-fonts.fira-code
nerd-fonts.droid-sans-mono nerd-fonts.droid-sans-mono
]; ];
@ -73,6 +72,8 @@ in {
}; };
}; };
networking.useDHCP = false; # The global useDHCP flag is deprecated, therefore explicitly set to false here.
programs.dconf.enable = true; programs.dconf.enable = true;
# Coredumps are a security risk and may use up a lot of disk space # Coredumps are a security risk and may use up a lot of disk space

View file

@ -34,7 +34,6 @@ in {
networking = { networking = {
networkmanager.enable = true; networkmanager.enable = true;
useDHCP = false; # The global useDHCP flag is deprecated, therefore explicitly set to false here.
}; };
services = { services = {

View file

@ -111,9 +111,9 @@ with lib; {
time.timeZone = "Europe/Amsterdam"; time.timeZone = "Europe/Amsterdam";
systemd = { systemd = {
extraConfig = '' settings.Manager = {
DefaultTimeoutStartSec=900s DefaultTimeoutStartSec = "900s";
''; };
network = let network = let
inherit (config.local.sys) nets; inherit (config.local.sys) nets;
@ -185,7 +185,6 @@ with lib; {
users.fabian = { users.fabian = {
imports = [ imports = [
flakes.impermanence.nixosModules.home-manager.impermanence
"${flakes.self}/home/platforms/fabian@vps" "${flakes.self}/home/platforms/fabian@vps"
"${flakes.self}/home" "${flakes.self}/home"
]; ];

View file

@ -210,7 +210,7 @@
}: }:
flakes.nixpkgs.lib.makeOverridable flakes.nixpkgs.lib.nixosSystem { flakes.nixpkgs.lib.makeOverridable flakes.nixpkgs.lib.nixosSystem {
inherit pkgs; inherit pkgs;
inherit (pkgs) system; inherit (pkgs.stdenv.hostPlatform) system;
modules = [self.nixosModules.default] ++ modules; modules = [self.nixosModules.default] ++ modules;