Changed the AI.nix import from HM to Configuration.nix

This commit is contained in:
Alexandre 2025-12-26 23:29:33 +01:00
parent 0422dc93e0
commit 7e7ea34ca6
4 changed files with 4 additions and 5 deletions

View File

@ -10,9 +10,6 @@ in
commonHome // {
# Refer to the nixOS host for info about home-manager
# inherit commonHome;
imports = [
(import ../../common/ai.nix { gpu = "metal"; })
];
home.stateVersion = "25.11";
# Allow unfree packages

View File

@ -1,4 +1,6 @@
{
# Enpty file for future imports
imports = [
(import ../../common/ai.nix { gpu = "metal"; })
];
}

View File

@ -12,7 +12,6 @@ commonHome // {
# manage.
imports = [
../../modules/home-manager/hyprland.nix
(import ../../modules/common/ai.nix { gpu = "cuda"; })
];
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release

View File

@ -8,5 +8,6 @@
../../modules/nixos/gamming/steam.nix # For Steam/Proton/Lutris/MangoHUD/Heroic/Bottles
../../modules/common/spotify.nix # Spotify/Spicetify
../../modules/common/ssh.nix
(import ../../modules/common/ai.nix { gpu = "cuda"; })
];
}