mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 11:20:19 +01:00
os: use localtimed
This commit is contained in:
parent
2ce5f65166
commit
d80e4d59c7
1 changed files with 13 additions and 7 deletions
|
|
@ -58,12 +58,18 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
users.users.traxys = {
|
||||
uid = 1000;
|
||||
isNormalUser = true;
|
||||
home = "/home/traxys";
|
||||
extraGroups = [ "wheel" "networkmanager" "adbusers" ];
|
||||
shell = pkgs.zsh;
|
||||
users = {
|
||||
users = {
|
||||
traxys = {
|
||||
uid = 1000;
|
||||
isNormalUser = true;
|
||||
home = "/home/traxys";
|
||||
extraGroups = [ "wheel" "networkmanager" "adbusers" ];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
localtimed.group = "localtimed";
|
||||
};
|
||||
groups.localtimed = { };
|
||||
};
|
||||
|
||||
# Set your time zone.
|
||||
|
|
@ -71,7 +77,7 @@ in
|
|||
|
||||
services.printing = {
|
||||
enable = true;
|
||||
drivers = [pkgs.hplip];
|
||||
drivers = [ pkgs.hplip ];
|
||||
};
|
||||
|
||||
hardware.opengl = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue