a95d1fbd35
- Replace Librewolf with Firefox as the backup browser - Update default and extra locales to en_US.UTF-8 and de_DE.UTF-8 respectively - Change theme fetch setting from 'none' to 'fastfetch' and update wallpaper - Minor formatting cleanup in THEMES.md
39 lines
701 B
Nix
39 lines
701 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/Berlin";
|
|
defaultLocale = "en_US.UTF-8";
|
|
extraLocale = "de_DE.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 = {};
|
|
};
|
|
};
|
|
}
|