clean prism
nixos config pipeline / show-flake (push) Successful in 31s
nixos config pipeline / deploy (push) Successful in 9s

This commit is contained in:
smayzy
2026-01-17 16:06:20 +01:00
parent 83143b1a05
commit 4475bc7129
4 changed files with 4 additions and 26 deletions
-1
View File
@@ -1,7 +1,6 @@
{ ... }:
{
imports = [
./prism.nix
./steam.nix
];
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.prism.enable = mkOption {
type = types.bool;
default = false;
description = "prismlauncher";
};
config = mkIf config.smayzy.prism.enable {
environment.systemPackages = with pkgs; [
prismlauncher
];
};
}