Compare commits

...

2 commits

Author SHA1 Message Date
GaspardCulis
535d4a3a77 feat: Added gaming module with minecraft submodule 2024-10-25 08:37:56 +02:00
GaspardCulis
649ac0abff fix(hypr -> nix): Define NIXOS_OZONE_WL session variable 2024-10-25 08:36:54 +02:00
4 changed files with 16 additions and 0 deletions

View file

@ -74,6 +74,7 @@
extraConfig = builtins.readFile ./hyprland.conf; extraConfig = builtins.readFile ./hyprland.conf;
plugins = [inputs.hy3.packages.${pkgs.system}.hy3]; plugins = [inputs.hy3.packages.${pkgs.system}.hy3];
}; };
home.sessionVariables.NIXOS_OZONE_WL = "1";
# bar is required # bar is required
imports = [ imports = [

9
gaming/default.nix Normal file
View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
home.packages = with pkgs; [
gamemode
];
imports = [
./minecraft
];
}

View file

@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
prismlauncher
];
}

View file

@ -11,6 +11,7 @@
../term ../term
../editor ../editor
../de ../de
../gaming
../themes/pomme.nix ../themes/pomme.nix
]; ];
} }