Files
nixy/hosts/laptop/variables.nix
T

39 lines
700 B
Nix

{
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/Paris";
defaultLocale = "de_DE.UTF-8";
extraLocale = "en_EN.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 = {};
};
};
}