mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
68 lines
2.0 KiB
Nix
68 lines
2.0 KiB
Nix
# This is just a library intended solely for this flake.
|
|
# It is expected to use the nixpkgs library with `lib/default.nix`.
|
|
{ lib }:
|
|
|
|
rec {
|
|
# This is only used for home-manager users without a NixOS user counterpart.
|
|
mapHomeManagerUser = user: settings:
|
|
let
|
|
homeDirectory = "/home/${user}";
|
|
defaultUserConfig = {
|
|
extraGroups = lib.mkDefault [ "wheel" ];
|
|
createHome = lib.mkDefault true;
|
|
home = lib.mkDefault homeDirectory;
|
|
isNormalUser = lib.mkForce true;
|
|
};
|
|
in
|
|
({ lib, ... }: {
|
|
home-manager.users."${user}" = { ... }: {
|
|
imports = [
|
|
{
|
|
home.username = user;
|
|
home.homeDirectory = homeDirectory;
|
|
}
|
|
|
|
(getUser "home-manager" user)
|
|
];
|
|
};
|
|
|
|
users.users."${user}" = lib.mkMerge [
|
|
defaultUserConfig
|
|
settings
|
|
];
|
|
});
|
|
|
|
getUsers = type: users:
|
|
let
|
|
userModules = lib.filesToAttr ../users/${type};
|
|
invalidUsernames = [ "config" "modules" ];
|
|
|
|
users' = lib.removeAttrs userModules invalidUsernames;
|
|
userList = lib.attrNames users';
|
|
|
|
nonExistentUsers = lib.filter (name: !lib.elem name userList) users;
|
|
in
|
|
lib.trivial.throwIfNot ((lib.length nonExistentUsers) == 0)
|
|
"there are no users ${lib.concatMapStringsSep ", " (u: "'${u}'") nonExistentUsers} from ${type}"
|
|
(r: r)
|
|
users';
|
|
|
|
getUser = type: user: ../users/${type}/${user};
|
|
|
|
# Import modules with a set blocklist.
|
|
importModules = attrs:
|
|
let
|
|
blocklist = [
|
|
# The modules under this attribute are often incomplete and needing
|
|
# very specific requirements that is 99% going to be absent from the
|
|
# outside so we're not going to export it.
|
|
"tasks"
|
|
|
|
# Profiles are often specific to this project so there's not much point
|
|
# in exporting these.
|
|
"profiles"
|
|
];
|
|
in
|
|
lib.attrsets.removeAttrs (lib.mapAttrsRecursive (_: sopsFile: import sopsFile) attrs) blocklist;
|
|
}
|