mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
29 lines
697 B
Nix
29 lines
697 B
Nix
{ config, ... }: {
|
|
imports = [ ../../nixos/variables-config.nix ../../themes/yoru.nix ];
|
|
|
|
config.var = {
|
|
hostname = "nixy";
|
|
username = "hadi";
|
|
configDirectory = "/home/" + config.var.username
|
|
+ "/.config/nixos"; # The path of the nixos configuration directory
|
|
|
|
keyboardLayout = "fr";
|
|
|
|
location = "Paris";
|
|
timeZone = "Europe/Paris";
|
|
defaultLocale = "en_US.UTF-8";
|
|
extraLocale = "fr_FR.UTF-8";
|
|
|
|
git = {
|
|
username = "Hadi";
|
|
email = "112569860+anotherhadi@users.noreply.github.com";
|
|
};
|
|
|
|
autoUpgrade = false;
|
|
autoGarbageCollector = true;
|
|
|
|
# Choose your theme variables here
|
|
# theme = import ../../themes/var/2025.nix;
|
|
};
|
|
}
|