mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 21:39:23 +02:00
Clean up systms
This commit is contained in:
parent
a80a6a0b1d
commit
ef6b1a72e4
17 changed files with 101 additions and 65 deletions
106
systems/kuraokami/default.nix
Normal file
106
systems/kuraokami/default.nix
Normal file
|
@ -0,0 +1,106 @@
|
|||
{ config, pkgs, lib, nixos-hardware, self, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
nixos-hardware.nixosModules.common-cpu-intel
|
||||
nixos-hardware.nixosModules.common-gpu-intel
|
||||
nixos-hardware.nixosModules.common-gpu-nvidia
|
||||
nixos-hardware.nixosModules.common-pc
|
||||
nixos-hardware.nixosModules.common-hidpi
|
||||
nixos-hardware.nixosModules.common-pc-ssd
|
||||
];
|
||||
|
||||
jopejoe1 = {
|
||||
audio = {
|
||||
enable = true;
|
||||
sennheiser-hd-660s = true;
|
||||
};
|
||||
bluetooth.enable = true;
|
||||
local.enable = true;
|
||||
nix.enable = true;
|
||||
plasma6.enable = true;
|
||||
printing.enable = true;
|
||||
steam.enable = true;
|
||||
ssh.enable = true;
|
||||
asf.enable = true;
|
||||
sway.enable = true;
|
||||
minecraft-server.enable = true;
|
||||
repo-sync.enable = true;
|
||||
keyboard = {
|
||||
enable = true;
|
||||
layout = "de";
|
||||
};
|
||||
user = {
|
||||
jopejoe1.enable = true;
|
||||
root.enable = true;
|
||||
};
|
||||
boot.systemd.enable = true;
|
||||
};
|
||||
|
||||
networking = {
|
||||
hostId = "16c22faf";
|
||||
};
|
||||
|
||||
services = {
|
||||
hardware.openrgb = {
|
||||
enable = true;
|
||||
motherboard = "intel";
|
||||
};
|
||||
};
|
||||
|
||||
nixpkgs = {
|
||||
config = {
|
||||
cudaSupport = true;
|
||||
cudaCapabilities = [ "8.6" ];
|
||||
};
|
||||
hostPlatform = {
|
||||
# gcc.arch = "alderlake";
|
||||
};
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
hardware = {
|
||||
opengl = {
|
||||
enable = true;
|
||||
driSupport32Bit = true;
|
||||
};
|
||||
nvidia = {
|
||||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
modesetting.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
localPkgs.prismlauncher-withExtraStuff
|
||||
mixxx
|
||||
picard
|
||||
mangohud
|
||||
goverlay
|
||||
strawberry
|
||||
whatsapp-for-linux
|
||||
teams-for-linux
|
||||
webex
|
||||
discord
|
||||
element-desktop
|
||||
mumble
|
||||
|
||||
# Theming
|
||||
catppuccin-kvantum
|
||||
catppuccin-kde
|
||||
catppuccin-gtk
|
||||
localPkgs.tela-icon-theme-git
|
||||
];
|
||||
|
||||
programs = {
|
||||
adb.enable = true;
|
||||
dconf.enable = true;
|
||||
droidcam.enable = true;
|
||||
xwayland.enable = true;
|
||||
kdeconnect.enable = true;
|
||||
gamemode.enable = true;
|
||||
};
|
||||
|
||||
nix.settings.system-features = [ "gccarch-alderlake" "benchmark" "big-parallel" "kvm" "nixos-test" ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue