add timezone option

This commit is contained in:
jacekpoz 2024-05-03 17:44:01 +02:00
parent c8a0732401
commit 81e9cf47e6
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
7 changed files with 6 additions and 6 deletions

View file

@ -9,8 +9,6 @@ in {
config.allowUnfree = true;
};
time.timeZone = "Europe/Warsaw";
users.users.${username} = {
extraGroups = [ "docker" ];
};

View file

@ -4,5 +4,6 @@ _: {
../../options/common/btrfs-scrub.nix
../../options/common/disable-nano.nix
../../options/common/nix.nix
../../options/common/timezone.nix
];
}

View file

@ -16,8 +16,6 @@
];
};
time.timeZone = "Europe/Warsaw";
nix = {
settings = {
max-jobs = 2;

View file

@ -9,6 +9,7 @@ _: {
../../options/common/oomd.nix
../../options/common/pin-registry.nix
../../options/common/preserve-system.nix
../../options/common/timezone.nix
../../options/desktop/bluetooth.nix
../../options/desktop/dev/malloc-perturb.nix
../../options/desktop/fonts.nix

View file

@ -23,8 +23,6 @@
];
};
time.timeZone = "Europe/Warsaw";
nix = {
settings = {
max-jobs = 3;

View file

@ -12,6 +12,7 @@ _: {
../../options/common/oomd.nix
../../options/common/pin-registry.nix
../../options/common/preserve-system.nix
../../options/common/timezone.nix
../../options/desktop/asusd.nix
../../options/desktop/bluetooth.nix
../../options/desktop/dev/malloc-perturb.nix

View file

@ -0,0 +1,3 @@
_: {
time.timeZone = "Europe/Warsaw";
}