nixos-config/config/configuration.nix

17 lines
348 B
Nix

{ lib, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
# inputs.home-manager.nixosModules.default
./nixos
./users/alice.nix
./variables.nix
./hosts/vm.nix
];
# to use zsh as a login shell, it has to be enabled globally.
programs.zsh.enable = true;
}