tangled
alpha
login
or
join now
quasigod.xyz
/
nixconfig
8
fork
atom
My NixOS and Home Manager configurations
8
fork
atom
overview
issues
pulls
pipelines
disable some uneeded documentation.* options
quasigod.xyz
5 months ago
dd21ba20
6945c25f
verified
This commit was signed with the committer's
known signature
.
quasigod.xyz
SSH Key Fingerprint:
SHA256:IYQIQqk4Il5k+VDa+O4RM4mqCqVtyRilM/eLPbx2jjc=
+9
-2
1 changed file
expand all
collapse all
unified
split
modules
toplevel
default.nix
+9
-2
modules/toplevel/default.nix
reviewed
···
1
1
{
2
2
unify.nixos =
3
3
-
{ pkgs, lib, homeConfig, ... }:
3
3
+
{
4
4
+
pkgs,
5
5
+
lib,
6
6
+
homeConfig,
7
7
+
...
8
8
+
}:
4
9
{
5
10
environment = {
6
11
binsh = "${pkgs.dash}/bin/dash";
7
12
# fixes some issues, mainly root $PATH
8
13
systemPackages = homeConfig.home.packages;
9
9
-
defaultPackages = lib.mkForce [];
14
14
+
defaultPackages = lib.mkForce [ ];
10
15
};
11
16
zramSwap.enable = true;
17
17
+
documentation.doc.enable = false;
18
18
+
documentation.info.enable = false;
12
19
time.timeZone = "America/New_York";
13
20
i18n.defaultLocale = "en_US.UTF-8";
14
21
i18n.supportedLocales = [ "all" ];