fix flake check
All checks were successful
Hydra callback / on_pr (pull_request) Successful in 1h32m53s
Hydra callback / on_push (pull_request) Has been skipped
Check flake syntax / flake-check (push) Successful in 20m36s

This commit is contained in:
2026-07-30 19:29:51 +02:00
parent 9f7b2bd3d5
commit 3d31a8a690
2 changed files with 10 additions and 18 deletions

20
flake.lock generated
View File

@@ -278,22 +278,6 @@
"type": "github"
}
},
"nixpkgs_4": {
"locked": {
"lastModified": 1783522502,
"narHash": "sha256-iffAls3iaNTyJC2faYcUXSI+Gp02cDjYl+MygxKl2GI=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "0bb7ec54c8483066ec9d7720e780a5caa71f8612",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"pyproject-build-systems": {
"inputs": {
"nixpkgs": [
@@ -578,7 +562,9 @@
},
"zineshop": {
"inputs": {
"nixpkgs": "nixpkgs_4",
"nixpkgs": [
"nixpkgs"
],
"utils": "utils_4"
},
"locked": {

View File

@@ -12,11 +12,17 @@ in
../modules/malobeo_user.nix
#inputs.nixos-hardware.nixosModules.raspberry-pi-3
(modulesPath + "/profiles/minimal.nix")
#(modulesPath + "/installer/sd-card/sd-image.nix")
];
fileSystems."/" =
{ device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
};
#Try to reduce size
services.nixosManual.enable = false;
documentation.man.enable = false;
documentation.nixos.enable = false;
services.openssh.enable = true;
services.openssh.ports = [ 22 ];