home-manager config moved to hosts and added vencord mod

This commit is contained in:
Kulvir Singh
2025-01-07 15:48:29 +05:30
parent 607e480170
commit 5158a4c5a4
7 changed files with 30 additions and 20 deletions

View File

@@ -1,4 +1,10 @@
{inputs, outputs, username, email, ...}: {
{
inputs,
outputs,
username,
email,
...
}: {
imports = [
inputs.home-manager.darwinModules.home-manager
@@ -7,6 +13,7 @@
./nix.nix
./users.nix
];
nixpkgs = {
overlays = [
outputs.overlays.additions
@@ -18,6 +25,7 @@
home-manager = {
backupFileExtension = "hnm";
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit username email outputs;};
users.${username} = import ./home.nix;