somehow this fixes an issue that randomly popped up

This commit is contained in:
Jill 2024-01-08 19:30:34 +03:00
parent 98dbf8271d
commit 95bbf76532
2 changed files with 9 additions and 2 deletions

View File

@ -71,6 +71,12 @@ in {
desktop-file-utils
shared-mime-info
xdg-user-dirs
xdg-utils
xdg-utils
# fun fact! when using flakes not having
# git available as a global package while operating
# on a git repository makes nixos-rebuild break,
# rendering your system unable to rebuild.
# nix is really cool
git
];
}

View File

@ -51,7 +51,8 @@
};
};
packages."${system}" = mapModules ./packages (p: pkgs.callPackage p {});
#packages."${system}" = mapModules ./packages (p: pkgs.callPackage p {});
packages."${system}" = {};
nixosModules = mapModulesRec ./modules import;