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
+1 -1
View File
@@ -15,7 +15,7 @@ in
enable = true;
commands = {
dragon-out = ''%${pkgs.dragon-drop}/bin/xdragon -a -x "$fx"'';
editor-open = ''$$EDITOR $f'';
editor-open = "$$EDITOR $f";
mkdir = ''
''${{
printf "Directory Name: "
+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