mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
27 lines
542 B
Nix
27 lines
542 B
Nix
|
|
{
|
||
|
|
description = "Home Manager configuration of avery";
|
||
|
|
|
||
|
|
inputs = {
|
||
|
|
nixpkgs.url = "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."avery" = home-manager.lib.homeManagerConfiguration {
|
||
|
|
inherit pkgs;
|
||
|
|
|
||
|
|
modules = [ ./home.nix ];
|
||
|
|
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|