28 lines
588 B
Nix
28 lines
588 B
Nix
{ nixpkgs, inputs, ... }:
|
|
nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
inputs.home-manager.nixosModules.home-manager
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
home-manager.users.drew =
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./drew.nix
|
|
];
|
|
};
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.extraSpecialArgs = {
|
|
inherit inputs;
|
|
};
|
|
}
|
|
];
|
|
specialArgs = {
|
|
inherit inputs;
|
|
};
|
|
}
|