machine/workman: use plymouth overlay

This commit is contained in:
Felix Buehler 2025-07-18 21:02:13 +02:00
parent cf9345bb3d
commit 065081b08d
3 changed files with 7 additions and 6 deletions

View file

@ -36,7 +36,6 @@
framework-plymouth = {
url = "github:j-pap/framework-plymouth";
inputs.nixpkgs.follows = "nixpkgs";
};
# own flakes

View file

@ -1,12 +1,13 @@
{ self, ... }:
let
inherit (self.inputs)
disko
framework-plymouth
nixos-hardware
nixpkgs
nixpkgs-unstable
sops-nix
nixos-hardware
passworts
disko
sops-nix
;
nixosSystem = nixpkgs.lib.makeOverridable nixpkgs.lib.nixosSystem;
overlay-unstable = final: _prev: {
@ -31,6 +32,7 @@ let
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [
overlay-unstable
framework-plymouth.overlays.default
(import ../overlays)
(import ../pkgs)
];

View file

@ -1,6 +1,6 @@
{
config,
inputs,
pkgs,
...
}:
{
@ -18,7 +18,7 @@
plymouth = {
enable = true;
theme = "framework";
themePackages = [ inputs.framework-plymouth.packages.${config.nixpkgs.system}.default ];
themePackages = [ pkgs.framework-plymouth ];
};
};
}