nixos-configs/hosts/binto/configuration.nix

99 lines
2.2 KiB
Nix
Raw Normal View History

2023-10-17 21:17:10 -04:00
{ pkgs, ... }: {
2023-10-15 23:12:19 -04:00
imports = [
./hardware-configuration.nix
../../modules/audio.nix
../../modules/kmscon.nix
../../modules/printer.nix
./modules/nvidia.nix
./modules/nix-gaming.nix
2023-10-15 23:12:19 -04:00
];
services.hostvars = {
username = "matt";
fontSize = 10;
};
2023-10-15 23:12:19 -04:00
networking = {
hostName = "binto";
networkmanager.enable = true;
firewall.enable = false;
};
# 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 = {
2023-10-17 18:45:08 -04:00
dbus.enable = true;
gvfs.enable = true;
flatpak.enable = true;
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
};
2023-10-17 21:17:10 -04:00
environment.systemPackages = with pkgs; [
p7zip # for reshade
xclip
];
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
elisa
oxygen
khelpcenter
konsole
plasma-browser-integration
];
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 = [
2023-10-17 20:56:27 -04:00
../../modules/alacritty.nix
../../modules/dconf.nix
2023-10-18 12:18:17 -04:00
../../modules/firefox
];
home.stateVersion = "23.11";
2023-10-15 23:21:14 -04:00
};
};
2023-10-15 23:12:19 -04:00
2023-10-17 18:45:08 -04:00
# Set your time zone.
time.timeZone = "America/Toronto";
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?
}