25 lines
520 B
Nix
25 lines
520 B
Nix
{
|
|
description = "Autumn's laptop config";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager }:
|
|
let
|
|
username = "autumn";
|
|
system = "x86_64-linux";
|
|
in {
|
|
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
modules = [
|
|
./configuration.nix
|
|
/home/${username}/.config/home-manager/home.nix
|
|
];
|
|
};
|
|
|
|
|
|
|
|
};
|
|
}
|