Compare commits
No commits in common. "f11852abdc8cd34609add2a790c880c6a34066e4" and "f97c01a604016dd95edd08945a585093d11b2220" have entirely different histories.
f11852abdc
...
f97c01a604
2 changed files with 30 additions and 42 deletions
|
@ -54,20 +54,18 @@ in
|
|||
mfact = 0.65;
|
||||
new_status = "master";
|
||||
new_on_top = true;
|
||||
drop_at_cursor = false;
|
||||
no_gaps_when_only = 1;
|
||||
};
|
||||
|
||||
decoration = {
|
||||
"col.shadow" = "rgba(1E202966)";
|
||||
dim_around = 0.6;
|
||||
dim_inactive = true;
|
||||
drop_shadow = "yes";
|
||||
rounding = 5;
|
||||
shadow = {
|
||||
color = "rgba(1E202966)";
|
||||
offset = "1 2";
|
||||
range = 60;
|
||||
render_power = 3;
|
||||
scale = 0.97;
|
||||
};
|
||||
shadow_range = 60;
|
||||
shadow_offset = "1 2";
|
||||
shadow_render_power = 3;
|
||||
shadow_scale = 0.97;
|
||||
};
|
||||
|
||||
monitor = [
|
||||
|
|
|
@ -1,35 +1,25 @@
|
|||
_:
|
||||
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"
|
||||
"/etc/systemd/nspawn"
|
||||
"/root/.local/share/nix"
|
||||
"/var/cache/fwupd"
|
||||
"/var/lib/bluetooth"
|
||||
"/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"
|
||||
];
|
||||
};
|
||||
_: {
|
||||
environment.persistence."/persist/system" = {
|
||||
hideMounts = true;
|
||||
directories = [
|
||||
"/etc/NetworkManager/system-connections"
|
||||
"/etc/systemd/nspawn"
|
||||
"/root/.local/share/nix"
|
||||
"/var/cache/fwupd"
|
||||
"/var/lib/bluetooth"
|
||||
"/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"
|
||||
];
|
||||
files = [
|
||||
"/etc/machine-id"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue