Fix config
This commit is contained in:
parent
898f855278
commit
1b7b7ee245
|
@ -13,8 +13,6 @@
|
|||
nixos-option
|
||||
bat
|
||||
procs
|
||||
plocate
|
||||
exa
|
||||
age
|
||||
lsd
|
||||
];
|
||||
|
|
|
@ -20,7 +20,8 @@
|
|||
# boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
# Define on which hard drive you want to install Grub.
|
||||
boot.loader.grub.device = "/dev/vda"; # or "nodev" for efi only
|
||||
|
||||
# Clear /tmp during boot
|
||||
boot.cleanTmpDir = true;
|
||||
# networking.hostName = "nixos"; # Define your hostname.
|
||||
# Pick only one of the below networking options.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
@ -113,5 +114,16 @@
|
|||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "22.05"; # Did you read the comment?
|
||||
|
||||
# Services
|
||||
services = {
|
||||
timesyncd.enable = true;
|
||||
locate = {
|
||||
enable = true;
|
||||
locate = pkgs.plocate;
|
||||
interval = "hourly";
|
||||
localuser = null;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue