Another fix for chaotic input
This commit is contained in:
parent
60caa62e0c
commit
6a2c6a5c54
3 changed files with 8 additions and 4 deletions
|
@ -47,7 +47,11 @@
|
|||
)
|
||||
// {
|
||||
homeManagerModules.play = import ./modules/home;
|
||||
nixosModules.play = import ./modules/nixos;
|
||||
nixosModules.play = {
|
||||
imports = [
|
||||
(import ./modules/nixos { inherit chaotic; })
|
||||
];
|
||||
};
|
||||
|
||||
# Default module (home-manager)
|
||||
homeManagerModules.default = self.homeManagerModules.play;
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
./ananicy.nix
|
||||
./gamemode.nix
|
||||
./lutris.nix
|
||||
./steam.nix
|
||||
(import ./steam.nix { inherit chaotic; })
|
||||
];
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
inputs,
|
||||
chaotic,
|
||||
...
|
||||
}:
|
||||
|
||||
|
@ -13,7 +13,7 @@ let
|
|||
|
||||
# Import proton packages directly, some users wont chaotics overlay
|
||||
proton-cachyos = pkgs.callPackage ../../pkgs/proton-cachyos { };
|
||||
proton-ge-custom = inputs.chaotic.legacyPackages.${pkgs.system}.proton-ge-custom;
|
||||
proton-ge-custom = chaotic.legacyPackages.${pkgs.system}.proton-ge-custom;
|
||||
|
||||
defaultCompatPackages = [
|
||||
proton-cachyos
|
||||
|
|
Loading…
Add table
Reference in a new issue