mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-07 21:56:34 +01:00
82 lines
2 KiB
Nix
82 lines
2 KiB
Nix
# 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
|
||
];
|
||
|
||
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
|
||
python312
|
||
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;
|
||
}
|
||
|