Files
nix-config/flake.nix
2026-01-14 00:14:24 +01:00

33 lines
851 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 = [
./configuration.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = specialArgs;
home-manager.users.${username} = import ./home/home.nix;
}
];
};
};
}