config: update more comments

This commit is contained in:
Gabriel Arazas 2022-12-10 18:47:34 +08:00
parent 7b76bc6500
commit e8a1dc2fd9
5 changed files with 11 additions and 2 deletions

View File

@ -97,6 +97,7 @@
# Access to NUR. # Access to NUR.
inputs.nur.overlay inputs.nur.overlay
# Running unpatched binaries in NixOS?!!
inputs.nix-alien.overlays.default inputs.nix-alien.overlays.default
]; ];

View File

@ -3,6 +3,7 @@
{ lib }: { lib }:
rec { rec {
# This is only used for home-manager users without a NixOS user counterpart.
mapHomeManagerUser = user: settings: mapHomeManagerUser = user: settings:
let let
homeDirectory = "/home/${user}"; homeDirectory = "/home/${user}";

View File

@ -1,3 +1,7 @@
# A bunch of predefined filesystem configurations for several devices. This is
# nice for setting up shop for certain tasks with the flick of the switch to ON
# (e.g., `config.profiles.filesystem.archive.enable = true`) and not have
# conflicting settings all throughout the configuration.
{ config, options, lib, pkgs, ... }: { config, options, lib, pkgs, ... }:
let let

View File

@ -1,4 +1,6 @@
# System-wide i18n options. # System-wide i18n options. This is primarily used for desktop installations.
# Unless there is really good reasons for setting i18n options on the server,
# this module will stay aiming for desktop.
{ config, options, lib, pkgs, ... }: { config, options, lib, pkgs, ... }:
let let

View File

@ -1,5 +1,6 @@
# All of the settings related to server systems. Take note they cannot be used # All of the settings related to server systems. Take note they cannot be used
# alongside the desktop profile. # alongside the desktop profile since there are conflicting configurations
# between them.
{ config, options, lib, pkgs, ... }: { config, options, lib, pkgs, ... }:
let let