fmt
nixos config pipeline / show-flake (push) Successful in 45s
nixos config pipeline / deploy (push) Successful in 9s

This commit is contained in:
smayzy
2026-04-30 00:50:44 +02:00
parent bf89c7cfaf
commit af11b7eddf
4 changed files with 42 additions and 20 deletions
+4 -1
View File
@@ -16,6 +16,9 @@ in
config = mkIf config.smayzy.steam.enable {
programs.steam.enable = true;
environment.systemPackages = with pkgs; [ depotdownloader protontricks ];
environment.systemPackages = with pkgs; [
depotdownloader
protontricks
];
};
}
+6 -1
View File
@@ -1,4 +1,9 @@
{ lib, config, pkgs, ... }:
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in