15 lines
300 B
Nix
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;
|
|
}
|
|
|