91 lines
2.0 KiB
Nix
91 lines
2.0 KiB
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{
|
||
config,
|
||
pkgs,
|
||
home-manager,
|
||
...
|
||
}:
|
||
|
||
{
|
||
# Enable networking
|
||
networking.networkmanager.enable = true;
|
||
|
||
# Set your time zone.
|
||
time.timeZone = "Europe/London";
|
||
|
||
# Select internationalisation properties.
|
||
i18n.defaultLocale = "en_GB.UTF-8";
|
||
|
||
i18n.extraLocaleSettings = {
|
||
LC_ADDRESS = "en_GB.UTF-8";
|
||
LC_IDENTIFICATION = "en_GB.UTF-8";
|
||
LC_MEASUREMENT = "en_GB.UTF-8";
|
||
LC_MONETARY = "en_GB.UTF-8";
|
||
LC_NAME = "en_GB.UTF-8";
|
||
LC_NUMERIC = "en_GB.UTF-8";
|
||
LC_PAPER = "en_GB.UTF-8";
|
||
LC_TELEPHONE = "en_GB.UTF-8";
|
||
LC_TIME = "en_GB.UTF-8";
|
||
};
|
||
|
||
# Enable touchpad support (enabled default in most desktopManager).
|
||
# services.xserver.libinput.enable = true;
|
||
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users.admin = {
|
||
isNormalUser = true;
|
||
description = "admin";
|
||
shell = pkgs.zsh;
|
||
extraGroups = [
|
||
"networkmanager"
|
||
"wheel"
|
||
"adbusers" # adb
|
||
"kvm" # virt
|
||
];
|
||
packages = with pkgs; [
|
||
];
|
||
};
|
||
|
||
# Some programs need SUID wrappers, can be configured further or are
|
||
# started in user sessions.
|
||
# programs.mtr.enable = true;
|
||
# programs.gnupg.agent = {
|
||
# enable = true;
|
||
# enableSSHSupport = true;
|
||
# };
|
||
|
||
# Enable the OpenSSH daemon.
|
||
services.openssh.enable = true;
|
||
|
||
nix.settings.experimental-features = [
|
||
"nix-command"
|
||
"flakes"
|
||
];
|
||
|
||
programs = {
|
||
zsh.enable = true;
|
||
};
|
||
|
||
fileSystems."/mnt/media" = {
|
||
device = "192.168.0.20:/mnt/pool/media";
|
||
fsType = "nfs";
|
||
};
|
||
fileSystems."/mnt/services" = {
|
||
device = "192.168.0.20:/mnt/pool/services";
|
||
fsType = "nfs";
|
||
};
|
||
fileSystems."/mnt/data" = {
|
||
device = "192.168.0.20:/mnt/pool/data";
|
||
fsType = "nfs";
|
||
};
|
||
|
||
nix = {
|
||
gc.automatic = true;
|
||
optimise.automatic = true;
|
||
};
|
||
|
||
}
|