poked some versions

This commit is contained in:
alisceon 2025-11-13 11:03:59 +01:00
parent 1c3eeaffc0
commit 45f0f25f08
3 changed files with 21 additions and 20 deletions

30
flake.lock generated
View file

@ -67,11 +67,11 @@
]
},
"locked": {
"lastModified": 1755928099,
"narHash": "sha256-OILVkfhRCm8u18IZ2DKR8gz8CVZM2ZcJmQBXmjFLIfk=",
"lastModified": 1758463745,
"narHash": "sha256-uhzsV0Q0I9j2y/rfweWeGif5AWe0MGrgZ/3TjpDYdGA=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "4a44fb9f7555da362af9d499817084f4288a957f",
"rev": "3b955f5f0a942f9f60cdc9cacb7844335d0f21c3",
"type": "github"
},
"original": {
@ -83,11 +83,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1755922037,
"narHash": "sha256-wY1+2JPH0ZZC4BQefoZw/k+3+DowFyfOxv17CN/idKs=",
"lastModified": 1762756533,
"narHash": "sha256-HiRDeUOD1VLklHeOmaKDzf+8Hb7vSWPVFcWwaTrpm+U=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b1b3291469652d5a2edb0becc4ef0246fff97a7c",
"rev": "c2448301fb856e351aab33e64c33a3fc8bcf637d",
"type": "github"
},
"original": {
@ -99,11 +99,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1755615617,
"narHash": "sha256-HMwfAJBdrr8wXAkbGhtcby1zGFvs+StOp19xNsbqdOg=",
"lastModified": 1762844143,
"narHash": "sha256-SlybxLZ1/e4T2lb1czEtWVzDCVSTvk9WLwGhmxFmBxI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "20075955deac2583bb12f07151c2df830ef346b4",
"rev": "9da7f1cf7f8a6e2a7cb3001b048546c92a8258b4",
"type": "github"
},
"original": {
@ -121,11 +121,11 @@
]
},
"locked": {
"lastModified": 1756986193,
"narHash": "sha256-YFCcCPTR6YajgpcoZSC0jtSPiG6qPukYpsdmQCEPIis=",
"lastModified": 1763025011,
"narHash": "sha256-LpEYbvuPeeeWsrN3fTJZRJJwEBasoraA9osRWIHacC4=",
"owner": "nix-community",
"repo": "NUR",
"rev": "d7843c8e7bcd55ebc4ba26d4d618bafaa41268f6",
"rev": "4cbf270857000bdd7af7ee52a7bc72448a299dec",
"type": "github"
},
"original": {
@ -142,11 +142,11 @@
]
},
"locked": {
"lastModified": 1756986193,
"narHash": "sha256-YFCcCPTR6YajgpcoZSC0jtSPiG6qPukYpsdmQCEPIis=",
"lastModified": 1763025011,
"narHash": "sha256-LpEYbvuPeeeWsrN3fTJZRJJwEBasoraA9osRWIHacC4=",
"owner": "nix-community",
"repo": "NUR",
"rev": "d7843c8e7bcd55ebc4ba26d4d618bafaa41268f6",
"rev": "4cbf270857000bdd7af7ee52a7bc72448a299dec",
"type": "github"
},
"original": {

View file

@ -1,6 +1,4 @@
{ config, pkgs, pkgs-unstable, lib, ... }:
{
{ config, pkgs, pkgs-unstable, lib, ... }: {
boot.kernel.sysctl = {
"net.ipv4.ip_unprivileged_port_start" = 0;
};
@ -8,11 +6,11 @@
system.autoUpgrade = {
enable = true;
persistent = true;
flake = "/home/alisceon/.nixos_config";
flake = "/home/alisceon/.nixos_config#${config.networking.hostName}";
flags = [
"--update-input"
"nixpkgs"
"-L"
"--commit-lock-file"
];
dates = "daily";
}; # end system.autoUpgrade

View file

@ -1,6 +1,9 @@
{ config, pkgs, ... }:
{
system.autoUpgrade = {
allowReboot = true;
}; # end system.autoUpgrade
services = {
openssh = {
enable = true;