Compare commits
No commits in common. "ba5b6d3dac923607631499ee7fb4297bfb987f65" and "0d23cd7976262d60a72fd9ec55e9c73908ba35b3" have entirely different histories.
ba5b6d3dac
...
0d23cd7976
@ -9,6 +9,5 @@
|
|||||||
./productivity.nix
|
./productivity.nix
|
||||||
./media.nix
|
./media.nix
|
||||||
#./hyprland/hyprland.nix
|
#./hyprland/hyprland.nix
|
||||||
./gaming.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +0,0 @@
|
|||||||
{pkgs, ...}: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
heroic
|
|
||||||
mangohud
|
|
||||||
osu-lazer-bin
|
|
||||||
steam
|
|
||||||
prismlauncher
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./bootloader.nix
|
./bootloader.nix
|
||||||
|
./graphics.nix
|
||||||
./powerManagement.nix
|
./powerManagement.nix
|
||||||
./wireless.nix
|
./wireless.nix
|
||||||
#./wayland.nix
|
#./wayland.nix
|
||||||
@ -16,8 +17,8 @@
|
|||||||
./nerdFonts.nix
|
./nerdFonts.nix
|
||||||
./nixos-cli.nix
|
./nixos-cli.nix
|
||||||
./lanzaboote.nix
|
./lanzaboote.nix
|
||||||
|
./gaming.nix
|
||||||
./printing.nix
|
./printing.nix
|
||||||
./yubikey.nix
|
./yubikey.nix
|
||||||
./steam.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
11
hosts/precision-5530/system/modules/gaming.nix
Normal file
11
hosts/precision-5530/system/modules/gaming.nix
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
programs.steam = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
heroic
|
||||||
|
mangohud
|
||||||
|
osu-lazer-bin
|
||||||
|
];
|
||||||
|
}
|
||||||
20
hosts/precision-5530/system/modules/graphics.nix
Normal file
20
hosts/precision-5530/system/modules/graphics.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
# Enable OpenGL
|
||||||
|
hardware.graphics = {
|
||||||
|
enable = true;
|
||||||
|
# extraPackages = with pkgs; [
|
||||||
|
# intel-media-sdk
|
||||||
|
# intel-ocl
|
||||||
|
# intel-compute-runtime
|
||||||
|
# ];
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
lshw
|
||||||
|
];
|
||||||
|
}
|
||||||
@ -8,6 +8,8 @@
|
|||||||
# Conflict with auto-cpufreq
|
# Conflict with auto-cpufreq
|
||||||
power-profiles-daemon.enable = false;
|
power-profiles-daemon.enable = false;
|
||||||
|
|
||||||
|
thermald.enable = true;
|
||||||
|
|
||||||
# List of governors:
|
# List of governors:
|
||||||
# - performance
|
# - performance
|
||||||
# - powersave
|
# - powersave
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
programs.steam.enabled = true;
|
|
||||||
}
|
|
||||||
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
# Docker
|
# Docker
|
||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
enable = false;
|
enable = true;
|
||||||
rootless = {
|
rootless = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setSocketVariable = true;
|
setSocketVariable = true;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user