dot_testing/boxes/copernicus/default.nix

113 lines
2.1 KiB
Nix
Raw Normal View History

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/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
unzip
imagemagick
2024-07-22 22:14:13 -05:00
pciutils
usbutils
pwvucontrol
2024-08-11 14:23:01 -05:00
dunst
libnotify
2024-08-15 03:11:25 -05:00
ffmpeg
2024-09-02 17:25:11 -05:00
mdadm
2024-09-09 01:07:06 -05:00
git-annex
(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
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
}