34 lines
891 B
Nix
34 lines
891 B
Nix
{
|
|
description = "Weckyy702's (hopefully nice) NixOS config";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
|
home-manager.url = "github:nix-community/home-manager/release-25.11";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
#TODO: nixvim, etc
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
|
|
nixosConfigurations.keith =
|
|
let
|
|
hostname = "keith";
|
|
username = "weckyy702";
|
|
specialArgs = { inherit inputs; inherit hostname; inherit username; };
|
|
in
|
|
nixpkgs.lib.nixosSystem {
|
|
inherit specialArgs;
|
|
modules = [
|
|
./hosts/keith
|
|
./users/${username}/nixos.nix
|
|
home-manager.nixosModules.home-manager {
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
|
|
home-manager.extraSpecialArgs = specialArgs;
|
|
home-manager.users.${username} = import ./users/${username}/home.nix;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|