22 lines
362 B
Nix
22 lines
362 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
../../authorized-keys.nix
|
|
inputs.sops-nix.nixosModules.sops
|
|
../../features/gc.nix
|
|
../../features/printing.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home-manager.users.drew =
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./drew.nix
|
|
];
|
|
};
|
|
}
|