feat(server): enable nvf.

This commit is contained in:
CronyAkatsuki 2025-03-23 21:26:40 +01:00
parent 26da4044dd
commit a9bb0d10c6
2 changed files with 11 additions and 2 deletions

View File

@ -73,10 +73,12 @@
"ivek" = home-manager.lib.homeManagerConfiguration { "ivek" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";}; pkgs = import nixpkgs {system = "x86_64-linux";};
modules = [./hosts/server/home.nix]; modules = [./hosts/server/home.nix];
extraSpecialArgs = {inherit inputs;};
}; };
"banir" = home-manager.lib.homeManagerConfiguration { "banir" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";}; pkgs = import nixpkgs {system = "x86_64-linux";};
modules = [./hosts/server/home.nix]; modules = [./hosts/server/home.nix];
extraSpecialArgs = {inherit inputs;};
}; };
}; };

View File

@ -1,11 +1,18 @@
{pkgs, ...}: { {
pkgs,
inputs,
...
}: {
home.username = "banir"; home.username = "banir";
home.homeDirectory = "/home/banir"; home.homeDirectory = "/home/banir";
home.stateVersion = "24.11"; home.stateVersion = "24.11";
programs.home-manager.enable = true; programs.home-manager.enable = true;
imports = [../../modules/cross-platform/home-manager/zsh.nix]; imports = [
../../modules/cross-platform/home-manager/zsh.nix
inputs.nvf.homeManagerModules.default
];
crony.zsh.enable = true; crony.zsh.enable = true;