2024-07-22 01:22:27 -05:00
|
|
|
{ lib, config, pkgs, ...}:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
./nvidia.nix
|
2024-08-15 03:11:25 -05:00
|
|
|
../x230t/special-ssh-magic.nix
|
2024-07-22 01:22:27 -05:00
|
|
|
../../modules/ssh-phone-home.nix
|
|
|
|
../../modules/hosts.nix
|
|
|
|
../../modules/bootstrap.nix
|
|
|
|
../../modules/common.nix
|
|
|
|
../../modules/x11.nix
|
|
|
|
../../modules/discord.nix
|
2024-07-24 13:16:58 -05:00
|
|
|
../../modules/gaming.nix
|
2024-07-22 01:22:27 -05:00
|
|
|
../../modules/rbw.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
|
|
|
|
|
|
|
|
users.users.usr.extraGroups = [
|
|
|
|
"docker"
|
2024-07-22 22:14:13 -05:00
|
|
|
"adbusers"
|
2024-07-22 01:22:27 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
wine
|
|
|
|
xdotool
|
|
|
|
|
|
|
|
qemu
|
|
|
|
virt-manager
|
|
|
|
libreoffice
|
|
|
|
nomacs
|
|
|
|
vscodium
|
|
|
|
thunderbird
|
|
|
|
libreoffice
|
|
|
|
texliveMedium
|
|
|
|
ledger
|
2024-07-22 15:12:19 -05:00
|
|
|
|
|
|
|
unzip
|
|
|
|
imagemagick
|
2024-07-22 22:14:13 -05:00
|
|
|
pciutils
|
|
|
|
usbutils
|
2024-08-04 18:43:03 -05:00
|
|
|
pwvucontrol
|
2024-08-11 14:23:01 -05:00
|
|
|
|
|
|
|
dunst
|
|
|
|
libnotify
|
2024-08-15 03:11:25 -05:00
|
|
|
ffmpeg
|
2024-08-26 17:40:32 -05:00
|
|
|
|
|
|
|
(pkgs.callPackage ../../builds/archutils.nix {})
|
2024-07-22 01:22:27 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
services.hardware.bolt.enable = true; # thunderbolt support
|
|
|
|
hardware.bluetooth = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
General = {
|
2024-08-11 14:23:01 -05:00
|
|
|
AutoEnable = true;
|
2024-07-22 01:22:27 -05:00
|
|
|
Enable = "Source,Sink,Media,Socket";
|
|
|
|
ControllerMode = "bredr";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-08-25 19:09:11 -05:00
|
|
|
virtualisation.virtualbox.host.enable = true;
|
|
|
|
|
2024-07-22 01:22:27 -05:00
|
|
|
boot.loader = {
|
|
|
|
efi = {
|
|
|
|
canTouchEfiVariables = true;
|
|
|
|
efiSysMountPoint = "/boot";
|
|
|
|
};
|
|
|
|
grub = {
|
|
|
|
efiSupport = true;
|
|
|
|
device = "nodev";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.printing.enable = true;
|
|
|
|
services.avahi.enable = true; # runs the Avahi daemon
|
|
|
|
services.avahi.nssmdns4 = true; # enables the mDNS NSS plug-in
|
|
|
|
services.avahi.openFirewall = true; # opens the firewall for UDP port 5353
|
|
|
|
|
2024-08-04 18:43:03 -05:00
|
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
|
|
|
};
|
|
|
|
|
2024-07-22 22:14:13 -05:00
|
|
|
programs.adb.enable = true;
|
|
|
|
|
2024-07-22 01:22:27 -05:00
|
|
|
powerManagement.cpuFreqGovernor = "performance";
|
|
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
networking = {
|
|
|
|
hostName = "copernicus";
|
|
|
|
firewall = {
|
|
|
|
enable = true;
|
|
|
|
allowedTCPPorts = [ 6000 ];
|
2024-08-11 14:23:01 -05:00
|
|
|
allowedTCPPortRanges = [
|
|
|
|
{ from = 1714; to = 1764; } # KDE Connect
|
|
|
|
];
|
|
|
|
allowedUDPPortRanges = [
|
|
|
|
{ from = 1714; to = 1764; } # KDE Connect
|
|
|
|
];
|
2024-07-22 01:22:27 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-08-11 14:23:01 -05:00
|
|
|
programs.kdeconnect.enable = true;
|
|
|
|
|
2024-07-22 01:22:27 -05:00
|
|
|
system.stateVersion = "24.05"; # don't change this, lol
|
|
|
|
}
|