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