Upgrade nixpkgs and NixOS stable to 23.11
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 26m58s
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 26m58s
This commit is contained in:
@@ -88,7 +88,7 @@ in
|
||||
|
||||
boot = {
|
||||
# Use latest LTS release by default
|
||||
kernelPackages = mkDefault pkgs.linuxKernel.packages.linux_6_1;
|
||||
kernelPackages = mkDefault (lib.my.c.kernel.lts pkgs);
|
||||
kernel = {
|
||||
sysctl = {
|
||||
"net.ipv6.route.max_size" = mkDefault 16384;
|
||||
|
@@ -57,7 +57,7 @@ in
|
||||
|
||||
programs.dconf.enable = true;
|
||||
|
||||
fonts.fonts = with pkgs; [
|
||||
fonts.packages = with pkgs; [
|
||||
dejavu_fonts
|
||||
freefont_ttf
|
||||
gyre-fonts # TrueType substitutes for standard PostScript fonts
|
||||
@@ -69,8 +69,19 @@ in
|
||||
xdg = {
|
||||
portal = {
|
||||
enable = true;
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
# For sway
|
||||
wlr.enable = true;
|
||||
configPackages = [
|
||||
(pkgs.writeTextDir "share/xdg-desktop-portal/sway-portals.conf" ''
|
||||
[preferred]
|
||||
default=gtk
|
||||
org.freedesktop.impl.portal.Screenshot=wlr
|
||||
org.freedesktop.impl.portal.ScreenCast=wlr
|
||||
'')
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@@ -99,7 +99,7 @@ in
|
||||
(mkIf (cfg.passwordSecret != null) {
|
||||
my = {
|
||||
secrets.files."${cfg.passwordSecret}" = {};
|
||||
user.config.passwordFile = config.age.secrets."${cfg.passwordSecret}".path;
|
||||
user.config.hashedPasswordFile = config.age.secrets."${cfg.passwordSecret}".path;
|
||||
};
|
||||
})
|
||||
]);
|
||||
|
Reference in New Issue
Block a user