mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 08:00:05 +01:00
swap: fix typo for checking if swap is on
This commit is contained in:
parent
3ab2a5d98d
commit
ec3ab72d3a
1 changed files with 1 additions and 1 deletions
|
|
@ -655,7 +655,7 @@ rec {
|
||||||
type = types.functionTo diskoLib.jsonType;
|
type = types.functionTo diskoLib.jsonType;
|
||||||
default = dev: {
|
default = dev: {
|
||||||
fs.${dev} = ''
|
fs.${dev} = ''
|
||||||
if ! $(swapon --show | grep -q '^${dev} '); then
|
if ! swapon --show | grep -q '^${dev} '; then
|
||||||
swapon ${dev}
|
swapon ${dev}
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue