35 lines
830 B
Nix
35 lines
830 B
Nix
{ config, ... }: {
|
|
imports = [ ../modules/variables-config.nix ];
|
|
|
|
config.var = {
|
|
hostname = "jack";
|
|
username = "hadi";
|
|
homeDirectory = "/home/" + config.var.username;
|
|
configDirectory = config.var.homeDirectory + "/.config/nixos";
|
|
|
|
keyboardLayout = "fr";
|
|
|
|
timeZone = "Europe/Paris";
|
|
defaultLocale = "en_US.UTF-8";
|
|
extraLocale = "fr_FR.UTF-8";
|
|
|
|
git = {
|
|
username = "Hadi";
|
|
email = "112569860+anotherhadi@users.noreply.github.com";
|
|
};
|
|
|
|
stateVersion = "24.05";
|
|
|
|
autoUpgrade = false;
|
|
autoGarbageCollector = false;
|
|
sops = true;
|
|
obsidian = false;
|
|
tailscale = true;
|
|
|
|
sshPublicKey =
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPG9SE80ZyBcXZK/f5ypSKudaM5Jo3XtQikCnGo0jI5E hadi@nixy";
|
|
|
|
theme = import ../themes/jack.nix; # select your theme here
|
|
};
|
|
}
|