mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-03 19:42:10 +02:00
28
hosts/desktop/variables.nix
Normal file
28
hosts/desktop/variables.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{ config, ... }: {
|
||||
imports = [ ../../nixos/variables-config.nix ];
|
||||
|
||||
config.var = {
|
||||
hostname = "desktop";
|
||||
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 = false;
|
||||
|
||||
# Choose your theme variables here
|
||||
theme = import ../../themes/var/pinky.nix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user