38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ config, pkgs, user, inputs, ... }:
|
||
|
||
{
|
||
# Automatically delete generations older than a week
|
||
nix.gc = {
|
||
automatic = true;
|
||
options = "--delete-generations 8d";
|
||
};
|
||
|
||
time.timeZone = "America/Los_Angeles";
|
||
|
||
users.users.${user} = {
|
||
isNormalUser = true;
|
||
extraGroups = [ "wheel" "audio" "video" "optical" "storage" "networkmanager" ];
|
||
initialPassword = "password";
|
||
};
|
||
|
||
nixpkgs.config.allowUnfree = true;
|
||
|
||
nix = {
|
||
package = pkgs.nixVersions.stable; # flakes
|
||
extraOptions = "experimental-features = nix-command flakes";
|
||
};
|
||
|
||
networking = {
|
||
networkmanager.enable = true;
|
||
resolvconf.enable = true;
|
||
# DNS servers managed by tailscale
|
||
};
|
||
|
||
# This value determines the NixOS release from which the default
|
||
# settings for stateful data, like file locations and database versions
|
||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||
# this value at the release version of the first install of this system.
|
||
# Before changing this value read the documentation for this option
|
||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||
system.stateVersion = "22.05"; # Did you read the comment?
|
||
}
|