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
|
|
|
|
|
|
2023-10-17 17:53:10 -04:00
|
|
|
|
./modules/nvidia.nix
|
2023-10-17 19:10:54 -04:00
|
|
|
|
./modules/nix-gaming.nix
|
2023-10-15 23:12:19 -04:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
networking = {
|
|
|
|
|
hostName = "binto";
|
|
|
|
|
networkmanager.enable = true;
|
|
|
|
|
firewall.enable = false;
|
|
|
|
|
};
|
|
|
|
|
# Enable the X11 windowing system.
|
2023-10-17 17:53:10 -04:00
|
|
|
|
services.xserver = {
|
|
|
|
|
enable = true;
|
2023-10-15 23:12:19 -04:00
|
|
|
|
|
2023-10-17 17:53:10 -04:00
|
|
|
|
# Enable the KDE Plasma Desktop Environment.
|
|
|
|
|
displayManager.sddm.enable = true;
|
|
|
|
|
desktopManager.plasma5.enable = true;
|
|
|
|
|
};
|
2023-10-15 23:12:19 -04:00
|
|
|
|
|
2023-10-17 17:53:10 -04:00
|
|
|
|
services = {
|
2023-10-17 18:45:08 -04:00
|
|
|
|
dbus.enable = true;
|
|
|
|
|
gvfs.enable = true;
|
|
|
|
|
flatpak.enable = true;
|
|
|
|
|
|
2023-10-17 17:53:10 -04:00
|
|
|
|
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
|
|
|
|
|
];
|
|
|
|
|
|
2023-10-17 17:53:10 -04:00
|
|
|
|
users.users.matt = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ];
|
2023-10-15 23:12:19 -04:00
|
|
|
|
};
|
|
|
|
|
|
2023-10-17 17:53:10 -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
|
2023-10-17 17:53:10 -04:00
|
|
|
|
../../modules/dconf.nix
|
2023-10-18 12:18:17 -04:00
|
|
|
|
../../modules/firefox
|
2023-10-17 17:53:10 -04:00
|
|
|
|
];
|
2023-10-17 20:56:27 -04:00
|
|
|
|
programs.alacritty.settings.font.size = 10;
|
2023-10-17 17:53:10 -04:00
|
|
|
|
|
|
|
|
|
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. 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 = "23.11"; # Did you read the comment?
|
|
|
|
|
}
|