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 =
|
outputs =
|
||||||
{ self, nixpkgs, ... }@inputs:
|
{ self, nixpkgs, ... }@inputs:
|
||||||
|
let
|
||||||
|
hmpkgs = nixpkgs.legacyPackages."x86_64-linux";
|
||||||
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations =
|
nixosConfigurations =
|
||||||
let
|
let
|
||||||
|
@ -71,7 +74,8 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
homeConfigurations."zynh" = inputs.home-manager.lib.homeManagerConfiguration {
|
homeConfigurations."zynh" = inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
inherit pkgs;
|
pkgs = hmpkgs;
|
||||||
|
extraSpecialArgs = { inherit inputs; };
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/msiserver/home.nix
|
./hosts/msiserver/home.nix
|
||||||
|
|
|
@ -9,6 +9,15 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.neovim-overlay.packages.${pkgs.system}.default;
|
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; [
|
home.packages = with pkgs; [
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
|
|
Loading…
Reference in a new issue