home-manager parameters
This commit is contained in:
@ -182,7 +182,7 @@
|
||||
# sha256 = "0hhfk86z1yq5gn9bzqpv46nb9bdx3fygi55b4ayzmnamva7rcajp";
|
||||
# })
|
||||
# ];
|
||||
}));
|
||||
}))
|
||||
];
|
||||
|
||||
|
||||
|
||||
@ -38,6 +38,11 @@
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.abby = ./home.nix;
|
||||
home-manager.extraSpecialArgs = {
|
||||
username = "abby";
|
||||
inherit inputs;
|
||||
system = "x86_64-linux";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
@ -53,6 +58,10 @@
|
||||
lix-module.nixosModules.default
|
||||
./home.nix
|
||||
];
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
inherit system;
|
||||
};
|
||||
};
|
||||
homeConfigurations."pager@nicrosil" =
|
||||
let
|
||||
|
||||
3
home.nix
3
home.nix
@ -1,4 +1,4 @@
|
||||
{ config, pkgs, inputs, username ? "abby", ... }:
|
||||
{ config, pkgs, inputs, system ? "x86_64-linux", username ? "abby", ... }:
|
||||
|
||||
{
|
||||
# Home Manager needs a bit of information about you and the
|
||||
@ -22,6 +22,7 @@
|
||||
home.packages = with pkgs; [
|
||||
tmux
|
||||
htop
|
||||
#inputs.baballonia.${system}.default
|
||||
];
|
||||
|
||||
# Wayvr customization
|
||||
|
||||
Reference in New Issue
Block a user