Compare commits
2 commits
f97c01a604
...
f11852abdc
Author | SHA1 | Date | |
---|---|---|---|
f11852abdc | |||
9ca9fb8ae3 |
2 changed files with 42 additions and 30 deletions
|
@ -54,18 +54,20 @@ in
|
|||
mfact = 0.65;
|
||||
new_status = "master";
|
||||
new_on_top = true;
|
||||
no_gaps_when_only = 1;
|
||||
drop_at_cursor = false;
|
||||
};
|
||||
|
||||
decoration = {
|
||||
"col.shadow" = "rgba(1E202966)";
|
||||
dim_around = 0.6;
|
||||
drop_shadow = "yes";
|
||||
dim_inactive = true;
|
||||
rounding = 5;
|
||||
shadow_range = 60;
|
||||
shadow_offset = "1 2";
|
||||
shadow_render_power = 3;
|
||||
shadow_scale = 0.97;
|
||||
shadow = {
|
||||
color = "rgba(1E202966)";
|
||||
offset = "1 2";
|
||||
range = 60;
|
||||
render_power = 3;
|
||||
scale = 0.97;
|
||||
};
|
||||
};
|
||||
|
||||
monitor = [
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
_: {
|
||||
environment.persistence."/persist/system" = {
|
||||
_:
|
||||
let
|
||||
persistant-path = "/persist/system";
|
||||
in
|
||||
{
|
||||
environment = {
|
||||
etc = {
|
||||
"machine-id" = {
|
||||
enable = true;
|
||||
source = "${persistant-path}/machine-id";
|
||||
mode = "symlink";
|
||||
};
|
||||
};
|
||||
persistence."${persistant-path}" = {
|
||||
hideMounts = true;
|
||||
directories = [
|
||||
"/etc/NetworkManager/system-connections"
|
||||
|
@ -18,8 +30,6 @@ _: {
|
|||
"/var/lib/systemd"
|
||||
"/var/log"
|
||||
];
|
||||
files = [
|
||||
"/etc/machine-id"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue