This commit is contained in:
Weckyy702
2026-01-12 11:23:10 +01:00
parent 6122cba650
commit 0524def0ad
16 changed files with 154 additions and 41 deletions

33
flake.nix Normal file
View File

@@ -0,0 +1,33 @@
{
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;
}
];
};
};
}