21 lines
260 B
Nix
21 lines
260 B
Nix
{
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
../../authorized-keys.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home-manager.users.drew =
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./drew.nix
|
|
];
|
|
};
|
|
}
|