nixos-configs/hosts/binto/configuration.nix

80 lines
1.9 KiB
Nix
Raw Normal View History

2023-10-15 23:12:19 -04:00
# 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).
{ ... }: {
imports = [
./hardware-configuration.nix
../../modules/audio.nix
../../modules/kmscon.nix
../../modules/printer.nix
./modules/nvidia.nix
2023-10-15 23:12:19 -04:00
];
networking = {
hostName = "binto";
networkmanager.enable = true;
firewall.enable = false;
};
# Set your time zone.
time.timeZone = "America/Toronto";
# Enable the X11 windowing system.
services.xserver = {
enable = true;
2023-10-15 23:12:19 -04:00
# Enable the KDE Plasma Desktop Environment.
displayManager.sddm.enable = true;
desktopManager.plasma5.enable = true;
};
2023-10-15 23:12:19 -04:00
services = {
tailscale = {
enable = true;
extraUpFlags = [
"--login-server https://headscale.nelim.org"
"--operator=matt"
];
};
openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
};
};
2023-10-15 23:12:19 -04:00
};
users.users.matt = {
isNormalUser = true;
extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ];
2023-10-15 23:12:19 -04:00
};
programs.dconf.enable = true;
# TODO: use hm for tmux
home-manager.users = {
matt = {
imports = [
../../modules/dconf.nix
../../modules/firefox/main.nix
];
home.stateVersion = "23.11";
2023-10-15 23:21:14 -04:00
};
};
2023-10-15 23:12:19 -04:00
# 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. Its 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 = "23.11"; # Did you read the comment?
}