alejandra

This commit is contained in:
joygnu 2024-09-21 09:45:11 +02:00
parent 6b7ea814a9
commit 0ac6879cff
3 changed files with 12 additions and 15 deletions

View file

@ -16,7 +16,7 @@
Z.Z = ":wq"; Z.Z = ":wq";
Z.Q = ":q!"; Z.Q = ":q!";
space.space = "file_picker"; space.space = "file_picker";
esc = [ "collapse_selection" "keep_primary_selection" ]; esc = ["collapse_selection" "keep_primary_selection"];
}; };
}; };
}; };

View file

@ -1,9 +1,9 @@
{ {
imports = [ imports = [
./suyu ./suyu
./steam ./steam
./norisk ./norisk
./mangohud ./mangohud
./mics ./mics
]; ];
} }

View file

@ -1,13 +1,10 @@
{ {lib, ...}: {
lib, nixpkgs.config.allowUnfreePredicate = pkg:
... builtins.elem (lib.getName pkg) [
}: { "steam-original"
nixpkgs.config.allowUnfreePredicate = pkg: "steam"
builtins.elem (lib.getName pkg) [ "steam-run"
"steam-original" ];
"steam" programs.steam.enable = true;
"steam-run" services.joycond.enable = true;
];
programs.steam.enable = true;
services.joycond.enable = true;
} }