nix-conf/systems/x86_64-linux/kami/default.nix
2023-04-24 17:55:12 +02:00

90 lines
2.2 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware.nix
];
services.ivpn.enable = true;
networking.hostName = "kami";
networking.hostId = "16c22faf";
boot.supportedFilesystems = [ "ntfs" "btrfs" "zfs" ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" "i686-linux" ];
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
networking.networkmanager.enable = true;
time.timeZone = "Europe/Berlin";
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl.enable = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
#boot.kernelParams = [ "module_blacklist=i915" ];
services.boinc.enable = true;
environment.systemPackages = with pkgs; [
prismlauncher
libsForQt5.discover
skypeforlinux
discord
jetbrains.pycharm-professional
python3
python3Packages.numpy
python3Packages.pandas
python3Packages.requests
python3Packages.json5
python3Packages.pyperclip
python3Packages.plotly
carla
tela-icon-theme
#devolo-dlan-cockpit
];
hardware.nvidia.modesetting.enable = true;
services.flatpak.enable = true;
programs = {
dconf.enable = true;
droidcam.enable = true;
sysdig.enable = true;
xwayland.enable = true;
kdeconnect.enable = true;
};
# Migrated Stuff
custom.user.jopejoe1.enable = true;
custom.user.root.enable = true;
custom.system.locale.enable = true;
custom.system.locale.layout = "de";
custom.nix.enable = true;
custom.desktop.plasma.enable = true;
custom.system.boot.uefi.enable = true;
custom.system.xdg.enable = true;
custom.system.fonts.enable = true;
custom.hardware.audio.enable = true;
custom.hardware.printing.enable = true;
custom.system.ssh.enable = true;
custom.hardware.rgb.enable = true;
custom.hardware.rgb.motherboard = "intel";
custom.hardware.bluetooth.enable = true;
custom.programs.steam.enable = true;
# Currently broken
#custom.system.dns.enable = true;
}