changes
This commit is contained in:
parent
fa644090ce
commit
91a1210e1f
4 changed files with 33 additions and 22 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -154,6 +154,14 @@
|
|||
relative-to = "bottom-left";
|
||||
};
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{
|
||||
app-id = "vesktop$";
|
||||
}
|
||||
];
|
||||
block-out-from = "screen-capture";
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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 = [
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue