mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
17 lines
378 B
Nix
17 lines
378 B
Nix
{ home-manager, stylix, nix-gaming, ... }:
|
|
|
|
let VARIABLES = import ./src/variables.nix; in {
|
|
imports = [
|
|
home-manager.nixosModules.home-manager
|
|
stylix.nixosModules.stylix
|
|
nix-gaming.nixosModules.pipewireLowLatency
|
|
"${VARIABLES.hostHardwareConfiguration}"
|
|
./containers
|
|
./home
|
|
./modules
|
|
./overlays
|
|
./specializations
|
|
./src/main.nix
|
|
];
|
|
}
|