nixos-config/config/configuration.nix
2025-07-18 00:13:17 +02:00

15 lines
300 B
Nix

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