mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
43 lines
729 B
Nix
43 lines
729 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
# Choose your theme here:
|
|
../../themes/rose-pine.nix
|
|
];
|
|
|
|
config.var = {
|
|
hostname = "pph";
|
|
username = "hadrien";
|
|
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 = "pph";
|
|
email = "pph@pph.pph";
|
|
};
|
|
|
|
autoUpgrade = false;
|
|
autoGarbageCollector = true;
|
|
};
|
|
|
|
# DON'T TOUCH THIS
|
|
options = {
|
|
var = lib.mkOption {
|
|
type = lib.types.attrs;
|
|
default = {};
|
|
};
|
|
};
|
|
}
|