winboat: Pin nixpkgs to working commit

This commit is contained in:
SebastianStork 2025-11-18 09:26:24 +01:00
parent 07643d5bf4
commit 0c0fd4d529
Signed by: SebastianStork
SSH key fingerprint: SHA256:iEM011ogNMG1q8+U500adGu/9rpPuZ2KnFtbdLeqTiI
3 changed files with 29 additions and 2 deletions

17
flake.lock generated
View file

@ -221,6 +221,22 @@
"type": "github"
}
},
"nixpkgs-c5ae371": {
"locked": {
"lastModified": 1762977756,
"narHash": "sha256-4PqRErxfe+2toFJFgcRKZ0UI9NSIOJa+7RXVtBhy4KE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "c5ae371f1a6a7fd27823bc500d9390b38c05fa55",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"rev": "c5ae371f1a6a7fd27823bc500d9390b38c05fa55",
"type": "github"
}
},
"nixpkgs-lib": {
"locked": {
"lastModified": 1761765539,
@ -280,6 +296,7 @@
"impermanence": "impermanence",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs",
"nixpkgs-c5ae371": "nixpkgs-c5ae371",
"nixpkgs-unstable": "nixpkgs-unstable",
"radicale-birthday-calendar": "radicale-birthday-calendar",
"sops": "sops",

View file

@ -4,6 +4,8 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
nixpkgs-c5ae371.url = "github:nixos/nixpkgs/c5ae371f1a6a7fd27823bc500d9390b38c05fa55";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";

View file

@ -1,6 +1,7 @@
{
config,
pkgs-unstable,
inputs,
pkgs,
lib,
...
}:
@ -11,6 +12,13 @@
virtualisation.docker.enable = true;
users.users.seb.extraGroups = [ config.users.groups.docker.name ];
environment.systemPackages = [ pkgs-unstable.winboat ];
environment.systemPackages =
let
pkgs-c5ae371 = import inputs.nixpkgs-c5ae371 {
inherit (pkgs.stdenv.hostPlatform) system;
inherit (config.nixpkgs) config;
};
in
[ pkgs-c5ae371.winboat ];
};
}