mirror of
https://github.com/lelgenio/dzgui-nix.git
synced 2025-02-18 19:36:13 -03:00
flake: add system check
This commit is contained in:
parent
eca167dfeb
commit
6cd3a545f2
13
flake.nix
13
flake.nix
|
@ -31,5 +31,18 @@
|
|||
|
||||
devShells.${system}.default =
|
||||
mkShell { buildInputs = self.packages.${system}.default.runtimeDeps; };
|
||||
|
||||
checks.${system}.nixosCheck = (nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
self.nixosModules.default
|
||||
{
|
||||
programs.dzgui.enable = true;
|
||||
|
||||
boot.isContainer = true;
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
];
|
||||
}).config.system.build.toplevel;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue