diff --git a/flake.lock b/flake.lock index 3963492..c0c0089 100644 --- a/flake.lock +++ b/flake.lock @@ -238,11 +238,11 @@ ] }, "locked": { - "lastModified": 1759284596, - "narHash": "sha256-N/poXYxAbHyWf2EBC6CSc6vKq0txtHMqTUMdPNOUB0g=", + "lastModified": 1759283950, + "narHash": "sha256-BuMc2O2G/k4sv/ssajs3nCT0uH726i1SN4E8eQvqNRk=", "ref": "refs/heads/master", - "rev": "51c57acdbff6f3f0c490bc67e791f5376a3f2be9", - "revCount": 72, + "rev": "884ef5199351af45f2416a708b14bbfc80b0f9c5", + "revCount": 71, "type": "git", "url": "https://git.posixlycorrect.com/fabian/homepage.git" }, diff --git a/home/modules/gui/waybar.nix b/home/modules/gui/waybar.nix index 81d046a..0a6c1b3 100644 --- a/home/modules/gui/waybar.nix +++ b/home/modules/gui/waybar.nix @@ -26,23 +26,22 @@ in { "clock" ]; - modules-right = - [ - "keyboard-state" - "privacy" - "cpu" - "memory" - "disk" - "temperature" - "tray" - ] - ++ lists.optionals laptop [ - "battery" - ]; + modules-right = [ + "keyboard-state" + "privacy" + "cpu" + "memory" + "disk" + "temperature" + "tray" + ] + ++ lists.optionals laptop [ + "battery" + ]; battery = mkIf laptop { format = "{capacity}% {icon}"; format-plugged = "{capacity}% 󱐥{icon}"; - format-icons = ["󰂃" "󰁺" "󰁻" "󰁼" "󰁽" "󰁾" "󰁿" "󰂀" "󰂁" "󰂂" "󰁹"]; + format-icons = [ "󰂃" "󰁺" "󰁻" "󰁼" "󰁽" "󰁾" "󰁿" "󰂀" "󰂁" "󰂂" "󰁹" ]; states = { warning = 20; critical = 10; @@ -75,7 +74,7 @@ in { tooltip-format = "{used}/{total}"; }; disk = { - format = " {specific_used:0.0f}/{specific_total:0.0f}"; + format = " {specific_used:0.0f}/{specific_total:0.0f}"; unit = "GiB"; tooltip = false; }; diff --git a/home/platforms/fabian@posixlycorrect/default.nix b/home/platforms/fabian@posixlycorrect/default.nix index 2c158a1..d53c779 100644 --- a/home/platforms/fabian@posixlycorrect/default.nix +++ b/home/platforms/fabian@posixlycorrect/default.nix @@ -31,6 +31,12 @@ height = "1080"; rate = "59.94"; }; + DP-2 = { + width = "1920"; + height = "1080"; + rate = "143.855"; + posX = "1920"; + }; }; }; }; diff --git a/sys/platforms/posixlycorrect/hardware-configuration.nix b/sys/platforms/posixlycorrect/hardware-configuration.nix index 6e41ba9..168c7c6 100644 --- a/sys/platforms/posixlycorrect/hardware-configuration.nix +++ b/sys/platforms/posixlycorrect/hardware-configuration.nix @@ -32,6 +32,12 @@ in { fsType = "vfat"; options = ["umask=027"]; }; + + "/extern" = { + device = "/dev/disk/by-uuid/7d8d3ec9-b456-4e2a-9396-551dcaf7705b"; + fsType = "btrfs"; + options = ["noatime" "compress=zstd"]; + }; }; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;