Compare commits

...

2 commits

2 changed files with 42 additions and 30 deletions

View file

@ -54,18 +54,20 @@ in
mfact = 0.65; mfact = 0.65;
new_status = "master"; new_status = "master";
new_on_top = true; new_on_top = true;
no_gaps_when_only = 1; drop_at_cursor = false;
}; };
decoration = { decoration = {
"col.shadow" = "rgba(1E202966)";
dim_around = 0.6; dim_around = 0.6;
drop_shadow = "yes"; dim_inactive = true;
rounding = 5; rounding = 5;
shadow_range = 60; shadow = {
shadow_offset = "1 2"; color = "rgba(1E202966)";
shadow_render_power = 3; offset = "1 2";
shadow_scale = 0.97; range = 60;
render_power = 3;
scale = 0.97;
};
}; };
monitor = [ monitor = [

View file

@ -1,25 +1,35 @@
_: { _:
environment.persistence."/persist/system" = { let
hideMounts = true; persistant-path = "/persist/system";
directories = [ in
"/etc/NetworkManager/system-connections" {
"/etc/systemd/nspawn" environment = {
"/root/.local/share/nix" etc = {
"/var/cache/fwupd" "machine-id" = {
"/var/lib/bluetooth" enable = true;
"/var/lib/btrfs" source = "${persistant-path}/machine-id";
"/var/lib/fwupd" mode = "symlink";
"/var/lib/iwd" };
"/var/lib/libvirt" };
"/var/lib/machines" persistence."${persistant-path}" = {
"/var/lib/NetworkManager" hideMounts = true;
"/var/lib/nixos" directories = [
"/var/lib/portables" "/etc/NetworkManager/system-connections"
"/var/lib/systemd" "/etc/systemd/nspawn"
"/var/log" "/root/.local/share/nix"
]; "/var/cache/fwupd"
files = [ "/var/lib/bluetooth"
"/etc/machine-id" "/var/lib/btrfs"
]; "/var/lib/fwupd"
"/var/lib/iwd"
"/var/lib/libvirt"
"/var/lib/machines"
"/var/lib/NetworkManager"
"/var/lib/nixos"
"/var/lib/portables"
"/var/lib/systemd"
"/var/log"
];
};
}; };
} }