22 lines
No EOL
695 B
Nix
22 lines
No EOL
695 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
(if builtins.pathExists /etc/nixos/hardware-configuration.nix then /etc/nixos/hardware-configuration.nix else null)
|
|
# Include device-specific overrides
|
|
(if builtins.pathExists /etc/nixos/device-configuration.nix then /etc/nixos/device-configuration.nix else null)
|
|
../nix-os/core.nix
|
|
../nix-os/nvidia.nix
|
|
../nix-os/docker.nix
|
|
../nix-os/razer.nix
|
|
../nix-os/desktop/gnome.nix
|
|
#../nix-os/desktop/kde-plasma.nix
|
|
../nix-os/shell.nix
|
|
../nix-os/virtualization.nix
|
|
../nix-os/polkit/disable-shutdown.nix
|
|
../nix-os/locale.nix
|
|
../nix-os/adb.nix
|
|
../nix-os/account.nix
|
|
];
|
|
} |