mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
30 lines
738 B
Nix
30 lines
738 B
Nix
{ meta, config, pkgs, modulesPath, lib, ... }: with lib; {
|
|
options.home-manager.users = let
|
|
userNMExtend = { config, nixos, ... }: {
|
|
services.network-manager-applet.enable = true;
|
|
};
|
|
userBase16Extend = { config, nixos, ... }: {
|
|
base16.alias.default = "atelier.atelier-cave-light";
|
|
};
|
|
in mkOption {
|
|
type = types.attrsOf (types.submoduleWith {
|
|
modules = [ userNMExtend userBase16Extend ];
|
|
});
|
|
};
|
|
|
|
imports = with meta; [
|
|
profiles.laptop
|
|
profiles.gui
|
|
users.kat.guiFull
|
|
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
|
|
];
|
|
|
|
config = {
|
|
networking = {
|
|
useDHCP = true;
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "21.11";
|
|
};
|
|
}
|