29 lines
558 B
Nix
29 lines
558 B
Nix
|
{
|
||
|
description = "Home Manager configuration of gkaklas";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||
|
|
||
|
home-manager = {
|
||
|
url = "github:nix-community/home-manager";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
outputs = {
|
||
|
nixpkgs,
|
||
|
home-manager,
|
||
|
...
|
||
|
}: let
|
||
|
system = "x86_64-linux";
|
||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||
|
in {
|
||
|
homeConfigurations."gkaklas" = home-manager.lib.homeManagerConfiguration {
|
||
|
inherit pkgs;
|
||
|
modules = [
|
||
|
./home.nix
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|