mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02: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";
|
||||
|
||||
zramSwap.memoryPercent = 100;
|
||||
|
||||
ar = {
|
||||
apps = {
|
||||
firefox.enable = true;
|
||||
|
@ -92,10 +94,7 @@ in {
|
|||
virt-manager.enable = true;
|
||||
};
|
||||
|
||||
base = {
|
||||
enable = true;
|
||||
zramSwap.size = 100;
|
||||
};
|
||||
base.enable = true;
|
||||
|
||||
desktop = {
|
||||
greetd = {
|
||||
|
|
|
@ -22,13 +22,11 @@
|
|||
|
||||
system.stateVersion = "24.05";
|
||||
|
||||
zramSwap.memoryPercent = 100;
|
||||
|
||||
ar = {
|
||||
apps.firefox.enable = true;
|
||||
|
||||
base = {
|
||||
enable = true;
|
||||
zramSwap.size = 100;
|
||||
};
|
||||
base.enable = true;
|
||||
|
||||
desktop = {
|
||||
greetd = {
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
./nix
|
||||
./nixpkgs
|
||||
./plymouth
|
||||
./zramSwap
|
||||
];
|
||||
|
||||
config = lib.mkIf config.ar.base.enable {
|
||||
|
@ -70,5 +69,10 @@
|
|||
};
|
||||
|
||||
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;
|
||||
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