18 lines
401 B
Nix
18 lines
401 B
Nix
{ inputs, username }:
|
|
|
|
inputs.home-manager.lib.homeManagerConfiguration {
|
|
modules = [
|
|
{
|
|
imports = [
|
|
../home-manager/modules/common.nix
|
|
../home-manager/modules/git.nix
|
|
../home-manager/modules/home-manager.nix
|
|
../home-manager/modules/tmux.nix
|
|
../home-manager/modules/zsh.nix
|
|
];
|
|
}
|
|
];
|
|
|
|
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
|
|
}
|