update/format configuration for jack

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2025-07-16 19:51:05 +02:00
parent 18c8afb616
commit 72e4be86eb
30 changed files with 466 additions and 589 deletions

View File

@@ -1,4 +1,8 @@
{ config, lib, ... }: {
{
config,
lib,
...
}: {
imports = [
# Choose your theme here:
../../themes/nixy.nix
@@ -7,7 +11,9 @@
config.var = {
hostname = "jack";
username = "hadi";
configDirectory = "/home/" + config.var.username
configDirectory =
"/home/"
+ config.var.username
+ "/.config/nixos"; # The path of the nixos configuration directory
keyboardLayout = "fr";
@@ -30,7 +36,7 @@
options = {
var = lib.mkOption {
type = lib.types.attrs;
default = { };
default = {};
};
};
}