clean prism
All checks were successful
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

View File

@ -1,7 +1,6 @@
{ ... }:
{
imports = [
./prism.nix
./steam.nix
];
}

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
];
};
}

View File

@ -14,7 +14,6 @@ in
base = true;
power = "desktop";
steam.enable = true;
prism.enable = true;
audio.enable = true;
office.enable = true;
element.enable = true;
@ -49,6 +48,9 @@ in
alacritty.enable = true;
};
programs.firefox.enable = true;
environment.systemPackages = with pkgs; [ librewolf ];
environment.systemPackages = with pkgs; [
librewolf
prismlauncher
];
};
}

View File

@ -19,7 +19,6 @@ in
base = true;
power = "laptop";
grub-on-lap.enable = true;
prism.enable = true;
audio.enable = true;
office.enable = true;
element.enable = true;