nix-conf/systems/x86_64-linux/kami/default.nix

64 lines
1.6 KiB
Nix
Raw Normal View History

2023-02-24 17:34:42 +01:00
# 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).
2023-02-23 20:34:35 +01:00
2023-02-24 17:34:42 +01:00
{ config, pkgs, ... }:
2023-02-23 20:34:35 +01:00
2023-02-24 17:34:42 +01:00
{
imports =
[ # Include the results of the hardware scan.
./hardware.nix
];
2023-02-23 20:34:35 +01:00
networking.hostName = "kami";
2023-02-27 19:42:34 +01:00
networking.hostId = "16c22faf";
2023-02-23 20:34:35 +01:00
2023-02-27 19:38:23 +01:00
boot.supportedFilesystems = [ "ntfs" "zfs" "btrfs" ];
2023-02-27 18:59:09 +01:00
2023-02-24 18:39:53 +01:00
networking.networkmanager.enable = true;
2023-02-24 17:34:42 +01:00
2023-02-23 20:34:35 +01:00
time.timeZone = "Europe/Berlin";
2023-02-24 17:34:42 +01:00
services.xserver.videoDrivers = [ "nvidia" ];
2023-02-23 20:34:35 +01:00
hardware.opengl.enable = true;
2023-02-24 17:34:42 +01:00
2023-02-24 17:19:53 +01:00
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
2023-02-24 18:39:53 +01:00
2023-02-27 17:56:52 +01:00
#boot.kernelParams = [ "module_blacklist=i915" ];
2023-02-24 18:39:53 +01:00
2023-02-24 17:34:42 +01:00
environment.systemPackages = with pkgs; [
2023-02-24 18:33:14 +01:00
git
2023-03-01 17:29:13 +01:00
prismlauncher
2023-03-01 22:41:04 +01:00
libsForQt5.discover
2023-02-24 17:34:42 +01:00
];
2023-02-23 20:34:35 +01:00
2023-02-28 11:38:09 +01:00
services.hardware.openrgb.enable = true;
services.hardware.openrgb.motherboard = "intel";
2023-03-01 22:15:46 +01:00
hardware.nvidia.modesetting.enable = true;
2023-03-01 22:36:08 +01:00
services.flatpak.enable = true;
2023-02-27 16:48:08 +01:00
programs = {
dconf.enable = true;
droidcam.enable = true;
sysdig.enable = true;
xwayland.enable = true;
2023-03-01 22:20:57 +01:00
kdeconnect.enable = true;
2023-02-27 16:48:08 +01:00
};
2023-02-24 18:39:53 +01:00
# Migrated Stuff
custom.user.jopejoe1.enable =true;
custom.user.root.enable =true;
2023-02-27 16:33:13 +01:00
custom.system.locale.enable = true;
custom.system.locale.layout = "de";
2023-02-27 16:37:32 +01:00
custom.nix.enable = true;
2023-02-27 16:40:45 +01:00
custom.desktop.plasma.enable = true;
2023-02-27 16:44:11 +01:00
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;
2023-02-23 20:34:35 +01:00
}
2023-02-24 17:34:42 +01:00