21 lines
519 B
Nix
21 lines
519 B
Nix
{ self, nixpkgs, inputs, ... }:
|
|
nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
inputs.home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager.users.drew = { pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
(self + "/home-manager/drew.nix")
|
|
];
|
|
};
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
}
|
|
];
|
|
specialArgs = { inherit inputs; };
|
|
}
|