changes
This commit is contained in:
parent
b7c561136b
commit
94c1f574cb
4 changed files with 33 additions and 22 deletions
|
|
@ -179,9 +179,9 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
# Increase file descriptor limit for builds
|
# Increase file descriptor limit for builds
|
||||||
sandbox = "relaxed";
|
# sandbox = "relaxed";
|
||||||
extra-sandbox-paths = [ ];
|
# extra-sandbox-paths = [ ];
|
||||||
build-users-group = "nixbld";
|
# build-users-group = "nixbld";
|
||||||
};
|
};
|
||||||
|
|
||||||
gc = {
|
gc = {
|
||||||
|
|
|
||||||
|
|
@ -154,6 +154,14 @@
|
||||||
relative-to = "bottom-left";
|
relative-to = "bottom-left";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
matches = [
|
||||||
|
{
|
||||||
|
app-id = "vesktop$";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
block-out-from = "screen-capture";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
matches = [
|
matches = [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -22,27 +22,27 @@
|
||||||
|
|
||||||
loader = {
|
loader = {
|
||||||
timeout = 3;
|
timeout = 3;
|
||||||
systemd-boot = {
|
# systemd-boot = {
|
||||||
enable = true;
|
|
||||||
consoleMode = lib.mkForce "auto";
|
|
||||||
configurationLimit = 10;
|
|
||||||
};
|
|
||||||
# limine = {
|
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# maxGenerations = 10;
|
# consoleMode = lib.mkForce "auto";
|
||||||
# extraConfig = ''
|
# configurationLimit = 10;
|
||||||
# timeout: 3
|
|
||||||
# '';
|
|
||||||
# style = {
|
|
||||||
# wallpapers = [ ];
|
|
||||||
# wallpaperStyle = "centered";
|
|
||||||
# backdrop = "#1e1e2e";
|
|
||||||
# interface = {
|
|
||||||
# branding = "kova's nixos!";
|
|
||||||
# brandingColor = 5;
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
# };
|
# };
|
||||||
|
limine = {
|
||||||
|
enable = true;
|
||||||
|
maxGenerations = 10;
|
||||||
|
extraConfig = ''
|
||||||
|
timeout: 3
|
||||||
|
'';
|
||||||
|
style = {
|
||||||
|
wallpapers = [ ];
|
||||||
|
wallpaperStyle = "stretched";
|
||||||
|
backdrop = "#1e1e2e";
|
||||||
|
interface = {
|
||||||
|
branding = "kova's nixos!";
|
||||||
|
brandingColor = 5;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
# efi.canTouchEfiVariables = true;
|
# efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
kernelParams = [
|
kernelParams = [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
|
@ -32,6 +33,8 @@
|
||||||
boot.kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-lts;
|
boot.kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-lts;
|
||||||
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
|
|
||||||
|
boot.loader.limine.maxGenerations = lib.mkForce 100;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
gamescope = {
|
gamescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue