23 lines
362 B
Nix
23 lines
362 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
./qmk.nix
|
|
../../authorized-keys.nix
|
|
../../features/gc.nix
|
|
../../features/gui.nix
|
|
../../features/container-dev.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home-manager.users.drew =
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./drew.nix
|
|
];
|
|
};
|
|
}
|