trying to get a hm config
This commit is contained in:
parent
38f1e14b89
commit
1de6d430ed
2 changed files with 14 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue