feat(server): enable nvf.
This commit is contained in:
parent
26da4044dd
commit
a9bb0d10c6
@ -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;};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user