This commit is contained in:
shinya 2025-10-25 11:32:45 +02:00
parent d8048b5137
commit 76414bc257
2 changed files with 4 additions and 3 deletions

View File

@ -3,9 +3,11 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
windows-theme.url = "git+https://gitea.homework.zip/shinya/Windows-Theme-Flake";
}; };
outputs = { self, nixpkgs }:
outputs = { self, nixpkgs, ... }@inputs:
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; };

View File

@ -3,7 +3,6 @@
lib, lib,
pkgs, pkgs,
system, system,
self,
... ...
}: }:
{ {
@ -15,7 +14,7 @@
boot.loader = { boot.loader = {
plymouth = { plymouth = {
theme = "xp"; theme = "xp";
themePackages = [ self.packages.${system}.windows-xp-plymouth ]; themePackages = [ inputs.windows-theme.packages.${system}.windows-xp-plymouth ];
}; };
}; };