fix: dotfiles path via self (submodule), fix Nix syntax
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
{ pkgs, inputs, config, keys, ... }: {
|
||||
home-manager.extraSpecialArgs = { inherit (config.networking) hostName; dotfiles = ./. + "/assets/dotfiles"; # git submodule (not flake input) };
|
||||
{ pkgs, inputs, config, keys, self, ... }: {
|
||||
home-manager.extraSpecialArgs = {
|
||||
inherit (config.networking) hostName;
|
||||
dotfiles = self + "/assets/dotfiles";
|
||||
};
|
||||
home-manager.users.gortium = import ./home.nix;
|
||||
users.users.gortium = {
|
||||
isNormalUser = true;
|
||||
|
||||
Reference in New Issue
Block a user