Files
nixos/hosts/jude/default.nix
T

59 lines
1.0 KiB
Nix

{ pkgs, ... }:
{
imports = [
./boot.nix
./hardware-configuration.nix
./podman.nix
./printing.nix
./virt.nix
];
programs = {
steam.enable = true;
nix-ld.enable = true;
};
networking.hostName = "jude";
networking.enableIPv6 = false;
#systemd.oomd.enable = false;
greg.tailscale.enable = true;
greg.gnome.enable = true;
greg.kde.enable = false;
environment.systemPackages = with pkgs; [
bind # For things like nslookup
gimp
gnucash
flock
ffmpeg
handbrake
imagemagick
libtheora
makemkv
oathToolkit
synology-drive-client
vagrant
ventoy
wireplumber
# Video/Audio data composition framework tools like "gst-inspect", "gst-launch" ...
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
gst_all_1.gst-libav
gst_all_1.gst-vaapi
];
fileSystems = {
"/boot" = {
device = "/dev/nvme0n1p1";
fsType = "auto";
};
"/windows" = {
device = "/dev/nvme0n1p3";
fsType = "ntfs-3g";
};
};
}