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.Q = ":q!";
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
./steam
./norisk
./mangohud
./mics
];
];
}

View file

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