add timezone option
This commit is contained in:
parent
c8a0732401
commit
81e9cf47e6
7 changed files with 6 additions and 6 deletions
|
@ -9,8 +9,6 @@ in {
|
|||
config.allowUnfree = true;
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Warsaw";
|
||||
|
||||
users.users.${username} = {
|
||||
extraGroups = [ "docker" ];
|
||||
};
|
||||
|
|
|
@ -4,5 +4,6 @@ _: {
|
|||
../../options/common/btrfs-scrub.nix
|
||||
../../options/common/disable-nano.nix
|
||||
../../options/common/nix.nix
|
||||
../../options/common/timezone.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -16,8 +16,6 @@
|
|||
];
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Warsaw";
|
||||
|
||||
nix = {
|
||||
settings = {
|
||||
max-jobs = 2;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
];
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Warsaw";
|
||||
|
||||
nix = {
|
||||
settings = {
|
||||
max-jobs = 3;
|
||||
|
|
|
@ -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
|
||||
|
|
3
options/common/timezone.nix
Normal file
3
options/common/timezone.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
_: {
|
||||
time.timeZone = "Europe/Warsaw";
|
||||
}
|
Loading…
Reference in a new issue