.config/home-manager/flake.nix
[raw]
[blame]
1{
2 description = "Home Manager configuration of kyle";
3
4 inputs = {
5 nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
6 home-manager = {
7 url = "github:nix-community/home-manager/release-25.11";
8 inputs.nixpkgs.follows = "nixpkgs";
9 };
10 };
11
12 outputs = { nixpkgs, home-manager, ... }:
13 let
14 system = "x86_64-linux";
15 pkgs = nixpkgs.legacyPackages.${system};
16 in {
17 homeConfigurations.kyle = home-manager.lib.homeManagerConfiguration {
18 inherit pkgs;
19
20 # Specify your home configuration modules here, for example,
21 # the path to your home.nix.
22 modules = [ ./home.nix ];
23
24 # Optionally use extraSpecialArgs
25 # to pass through arguments to home.nix
26 };
27 };
28}