This commit is contained in:
Sean Kovacs 2026-02-08 18:15:27 -05:00
commit 94c1f574cb
Signed by: sckova
GPG key ID: 00F325187C68651A
4 changed files with 33 additions and 22 deletions

View file

@ -179,9 +179,9 @@
];
# Increase file descriptor limit for builds
sandbox = "relaxed";
extra-sandbox-paths = [ ];
build-users-group = "nixbld";
# sandbox = "relaxed";
# extra-sandbox-paths = [ ];
# build-users-group = "nixbld";
};
gc = {

View file

@ -154,6 +154,14 @@
relative-to = "bottom-left";
};
}
{
matches = [
{
app-id = "vesktop$";
}
];
block-out-from = "screen-capture";
}
{
matches = [
{

View file

@ -22,27 +22,27 @@
loader = {
timeout = 3;
systemd-boot = {
enable = true;
consoleMode = lib.mkForce "auto";
configurationLimit = 10;
};
# limine = {
# systemd-boot = {
# enable = true;
# maxGenerations = 10;
# extraConfig = ''
# timeout: 3
# '';
# style = {
# wallpapers = [ ];
# wallpaperStyle = "centered";
# backdrop = "#1e1e2e";
# interface = {
# branding = "kova's nixos!";
# brandingColor = 5;
# };
# };
# consoleMode = lib.mkForce "auto";
# configurationLimit = 10;
# };
limine = {
enable = true;
maxGenerations = 10;
extraConfig = ''
timeout: 3
'';
style = {
wallpapers = [ ];
wallpaperStyle = "stretched";
backdrop = "#1e1e2e";
interface = {
branding = "kova's nixos!";
brandingColor = 5;
};
};
};
# efi.canTouchEfiVariables = true;
};
kernelParams = [

View file

@ -1,6 +1,7 @@
{
config,
pkgs,
lib,
...
}:
{
@ -32,6 +33,8 @@
boot.kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-lts;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
boot.loader.limine.maxGenerations = lib.mkForce 100;
programs = {
gamescope = {
enable = true;