{ config, lib, ... }: { imports = [ # Choose your theme here: ../../themes/nixy.nix ]; config.var = { hostname = "thinkpad"; username = "andi"; configDirectory = "/home/" + config.var.username + "/.config/nixos"; # The path of the nixos configuration directory keyboardLayout = "de"; timeZone = "Europe/Berlin"; defaultLocale = "de_DE.UTF-8"; extraLocale = "en_US.UTF-8"; git = { username = "kptltd00m"; email = "kptltd00m@doomlabs.de"; }; autoUpgrade = false; autoGarbageCollector = true; }; # DON'T TOUCH THIS options = { var = lib.mkOption { type = lib.types.attrs; default = {}; }; }; }