trying to get a hm config

main
Zynh Ludwig 2024-07-08 05:44:00 +00:00
parent 38f1e14b89
commit 1de6d430ed
2 changed files with 14 additions and 1 deletions

View File

@ -29,6 +29,9 @@
outputs =
{ self, nixpkgs, ... }@inputs:
let
hmpkgs = nixpkgs.legacyPackages."x86_64-linux";
in
{
nixosConfigurations =
let
@ -71,7 +74,8 @@
}
];
homeConfigurations."zynh" = inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
pkgs = hmpkgs;
extraSpecialArgs = { inherit inputs; };
modules = [
./hosts/msiserver/home.nix

View File

@ -9,6 +9,15 @@
enable = true;
package = inputs.neovim-overlay.packages.${pkgs.system}.default;
};
snowhawk.user.enable = false;
home.username = lib.mkDefault "zynh";
home.homeDirectory = lib.mkDefault "/home/zynh";
home.sessionPath = [
"${config.home.homeDirectory}/.cargo/bin"
];
home.packages = with pkgs; [
nix-output-monitor