infrastructure/config/hosts/medicine.nix
2021-09-09 18:20:49 +01:00

34 lines
801 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.gui
users.kat.guiFull
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
];
config = {
installer.cloneConfig = false;
networking = {
networkmanager.enable = true;
wireless.enable = mkForce false;
};
hardware.displays = {};
system.stateVersion = "21.11";
};
}