Compare commits

...

3 Commits

Author SHA1 Message Date
Whovian NTSN 3bbaf1e5d2 Add comment block to `system/packages.nix`
This is meant as documentation in case I want to enable `documentation.{man,nixos}` in the future, though I honestly doubt that I will. These would fix tools like `whatis`, but apparently `whatis` only seems to work on packages installed via `environment.systemPackages` that have man pages.
2024-05-08 04:00:00 -04:00
Whovian NTSN db8b248b7f Mess with `.gitignore` 2024-05-08 03:54:41 -04:00
Whovian NTSN 763b48eb03 Remove a comment that's not needed anymore 2024-05-08 01:48:18 -04:00
3 changed files with 15 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
result
.env .env
manualEpub # symlink for nixosConfigurations.nixos-wsl.config.system.build.manual.manualEpub
result # Symlink for system build

View File

@ -73,7 +73,7 @@
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager = { home-manager = {
# users.whovian = import ./home/home.nix;
sharedModules = [ sharedModules = [
./home/home.nix ./home/home.nix
agenix.homeManagerModules.default agenix.homeManagerModules.default

View File

@ -9,7 +9,18 @@
*/ */
# agenix.packages.x86_64-linux.default # agenix.packages.x86_64-linux.default
]; ];
/*
documentation = {
nixos = {
includeAllModules = true;
};
man = {
generateCaches = true;
};
};
*/
nixpkgs = { nixpkgs = {
config = { config = {
allowUnfree = true; allowUnfree = true;