mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:53:55 -05:00
nixos: move zramswap to base and delete module options
This commit is contained in:
parent
62e400ddeb
commit
094fb25714
|
@ -83,6 +83,8 @@ in {
|
||||||
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
|
|
||||||
|
zramSwap.memoryPercent = 100;
|
||||||
|
|
||||||
ar = {
|
ar = {
|
||||||
apps = {
|
apps = {
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
|
@ -92,10 +94,7 @@ in {
|
||||||
virt-manager.enable = true;
|
virt-manager.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
base = {
|
base.enable = true;
|
||||||
enable = true;
|
|
||||||
zramSwap.size = 100;
|
|
||||||
};
|
|
||||||
|
|
||||||
desktop = {
|
desktop = {
|
||||||
greetd = {
|
greetd = {
|
||||||
|
|
|
@ -22,13 +22,11 @@
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
|
||||||
|
zramSwap.memoryPercent = 100;
|
||||||
|
|
||||||
ar = {
|
ar = {
|
||||||
apps.firefox.enable = true;
|
apps.firefox.enable = true;
|
||||||
|
base.enable = true;
|
||||||
base = {
|
|
||||||
enable = true;
|
|
||||||
zramSwap.size = 100;
|
|
||||||
};
|
|
||||||
|
|
||||||
desktop = {
|
desktop = {
|
||||||
greetd = {
|
greetd = {
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
./nix
|
./nix
|
||||||
./nixpkgs
|
./nixpkgs
|
||||||
./plymouth
|
./plymouth
|
||||||
./zramSwap
|
|
||||||
];
|
];
|
||||||
|
|
||||||
config = lib.mkIf config.ar.base.enable {
|
config = lib.mkIf config.ar.base.enable {
|
||||||
|
@ -70,5 +69,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
time.timeZone = "America/New_York";
|
time.timeZone = "America/New_York";
|
||||||
|
|
||||||
|
zramSwap = {
|
||||||
|
enable = lib.mkDefault true;
|
||||||
|
memoryPercent = lib.mkDefault 50;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
config = lib.mkIf config.ar.base.zramSwap.enable {
|
|
||||||
zramSwap = {
|
|
||||||
enable = true;
|
|
||||||
memoryPercent = config.ar.base.zramSwap.size;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -93,20 +93,6 @@
|
||||||
default = config.ar.base.enable;
|
default = config.ar.base.enable;
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
};
|
};
|
||||||
|
|
||||||
zramSwap = {
|
|
||||||
enable = lib.mkOption {
|
|
||||||
description = "zram swap.";
|
|
||||||
default = config.ar.base.enable;
|
|
||||||
type = lib.types.bool;
|
|
||||||
};
|
|
||||||
|
|
||||||
size = lib.mkOption {
|
|
||||||
description = "zram swap size relative to RAM.";
|
|
||||||
default = 50;
|
|
||||||
type = lib.types.int;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue