mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
hosts/ni: prepend preferred timeservers
This commit is contained in:
parent
5b81339f9c
commit
3b79f3e256
@ -35,6 +35,12 @@
|
||||
type = "ed25519";
|
||||
}];
|
||||
|
||||
networking.timeServers = lib.mkBefore [
|
||||
"ntp.nict.jp"
|
||||
"time.nist.gov"
|
||||
"time.facebook.com"
|
||||
];
|
||||
|
||||
# My portable music streaming server.
|
||||
services.gonic = {
|
||||
enable = true;
|
||||
@ -146,12 +152,6 @@
|
||||
# Some sysadmin thingamajigs.
|
||||
openldap
|
||||
wireguard-tools
|
||||
(swh.swh-core.overrideAttrs (attrs: {
|
||||
pythonPath = with pkgs.swh; [
|
||||
swh-model
|
||||
swh-fuse
|
||||
];
|
||||
}))
|
||||
|
||||
# For debugging build environments in Nix packages.
|
||||
cntr
|
||||
|
@ -16,7 +16,14 @@ rec {
|
||||
in
|
||||
({ lib, ... }: {
|
||||
home-manager.users."${user}" = { ... }: {
|
||||
imports = [ (getUser "home-manager" user) ];
|
||||
imports = [
|
||||
{
|
||||
home.username = user;
|
||||
home.homeDirectory = homeDirectory;
|
||||
}
|
||||
|
||||
(getUser "home-manager" user)
|
||||
];
|
||||
};
|
||||
|
||||
users.users."${user}" = lib.mkMerge [
|
||||
|
Loading…
Reference in New Issue
Block a user