mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:13:55 -05:00
moved host modules into host configs rather than flake.nix
This commit is contained in:
parent
21593579a5
commit
7e09d5ac72
|
@ -38,8 +38,6 @@
|
|||
nixos-hardware.nixosModules.framework-13-7040-amd
|
||||
home-manager-unstable.nixosModules.home-manager
|
||||
./hosts/lavaridge
|
||||
./modules/gnome
|
||||
./modules/homelab/virtualization.nix
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -50,7 +48,6 @@
|
|||
nixos-hardware.nixosModules.lenovo-thinkpad-t440p
|
||||
home-manager-unstable.nixosModules.home-manager
|
||||
./hosts/rustboro
|
||||
./modules/kde.nix
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -62,7 +59,6 @@
|
|||
nixos-hardware.nixosModules.common-cpu-intel
|
||||
home-manager-unstable.nixosModules.home-manager
|
||||
./hosts/petalburg
|
||||
./modules/gnome
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -72,9 +68,6 @@
|
|||
modules = [
|
||||
home-manager-unstable.nixosModules.home-manager
|
||||
./hosts/mauville
|
||||
./modules/homelab
|
||||
./modules/gnome
|
||||
./modules/steam.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -4,11 +4,14 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly.nix
|
||||
../../system
|
||||
[
|
||||
../../modules/gnome
|
||||
../../modules/homelab/virtualization.nix
|
||||
../../modules/plymouth.nix
|
||||
../../modules/steam.nix
|
||||
../../system
|
||||
../../users/aly.nix
|
||||
./hardware-configuration.nix # Include the results of the hardware scan.
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
|
@ -5,9 +5,12 @@
|
|||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../../users/aly.nix
|
||||
../../modules/gnome
|
||||
../../modules/homelab
|
||||
../../modules/steam.nix
|
||||
../../system
|
||||
../../users/aly.nix
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
|
@ -41,11 +41,12 @@ let
|
|||
|
||||
in {
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly.nix
|
||||
../../system
|
||||
[
|
||||
../../modules/gnome
|
||||
../../modules/plymouth.nix
|
||||
../../system
|
||||
../../users/aly.nix
|
||||
./hardware-configuration.nix # Include the results of the hardware scan.
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
|
@ -4,11 +4,12 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
[
|
||||
./hardware-configuration.nix # Include the results of the hardware scan.
|
||||
../../users/aly.nix
|
||||
../../system
|
||||
../../modules/plymouth.nix
|
||||
../../modules/kde.nix
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
Loading…
Reference in a new issue