Add a snapshots btrfs subvolume

This commit is contained in:
Jimbo 2024-10-17 16:27:55 -04:00
parent 6419926899
commit 698869fcba
2 changed files with 6 additions and 1 deletions

View file

@ -89,6 +89,11 @@ in {
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@var" "noatime" "nodiratime" "discard" ]; options = [ "subvol=@var" "noatime" "nodiratime" "discard" ];
}; };
"/.snapshots" = {
device = "/dev/disk/by-uuid/bbfed7d1-62f2-4d8e-b63f-7f6ec932105b";
fsType = "btrfs";
options = [ "subvol=@snapshots" "noatime" "nodiratime" "discard" ];
};
"/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/3B4A-76C9"; device = "/dev/disk/by-uuid/3B4A-76C9";
fsType = "vfat"; fsType = "vfat";

View file

@ -1,6 +1,6 @@
{ pkgs, config, ... }: { pkgs, config, ... }:
let let
# FireFox colors # FireFox colors, based on https://github.com/Dook97/firefox-qutebrowser-userchrome
themeJim = '' themeJim = ''
:root { :root {
--tab-active-bg-color: #${config.look.colors.prime}; --tab-active-bg-color: #${config.look.colors.prime};