Compare commits

..

No commits in common. "403400c12856fdf453c33d0f2075a9d97042543a" and "9755ac07a1cbf4b9f2e2700a78e27b8e58de5eea" have entirely different histories.

4 changed files with 30 additions and 19 deletions

8
flake.lock generated
View file

@ -238,11 +238,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1759284596, "lastModified": 1759283950,
"narHash": "sha256-N/poXYxAbHyWf2EBC6CSc6vKq0txtHMqTUMdPNOUB0g=", "narHash": "sha256-BuMc2O2G/k4sv/ssajs3nCT0uH726i1SN4E8eQvqNRk=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "51c57acdbff6f3f0c490bc67e791f5376a3f2be9", "rev": "884ef5199351af45f2416a708b14bbfc80b0f9c5",
"revCount": 72, "revCount": 71,
"type": "git", "type": "git",
"url": "https://git.posixlycorrect.com/fabian/homepage.git" "url": "https://git.posixlycorrect.com/fabian/homepage.git"
}, },

View file

@ -26,23 +26,22 @@ in {
"clock" "clock"
]; ];
modules-right = modules-right = [
[ "keyboard-state"
"keyboard-state" "privacy"
"privacy" "cpu"
"cpu" "memory"
"memory" "disk"
"disk" "temperature"
"temperature" "tray"
"tray" ]
] ++ lists.optionals laptop [
++ lists.optionals laptop [ "battery"
"battery" ];
];
battery = mkIf laptop { battery = mkIf laptop {
format = "{capacity}% {icon}"; format = "{capacity}% {icon}";
format-plugged = "{capacity}% 󱐥{icon}"; format-plugged = "{capacity}% 󱐥{icon}";
format-icons = ["󰂃" "󰁺" "󰁻" "󰁼" "󰁽" "󰁾" "󰁿" "󰂀" "󰂁" "󰂂" "󰁹"]; format-icons = [ "󰂃" "󰁺" "󰁻" "󰁼" "󰁽" "󰁾" "󰁿" "󰂀" "󰂁" "󰂂" "󰁹" ];
states = { states = {
warning = 20; warning = 20;
critical = 10; critical = 10;
@ -75,7 +74,7 @@ in {
tooltip-format = "{used}/{total}"; tooltip-format = "{used}/{total}";
}; };
disk = { disk = {
format = " {specific_used:0.0f}/{specific_total:0.0f}"; format = " {specific_used:0.0f}/{specific_total:0.0f}";
unit = "GiB"; unit = "GiB";
tooltip = false; tooltip = false;
}; };

View file

@ -31,6 +31,12 @@
height = "1080"; height = "1080";
rate = "59.94"; rate = "59.94";
}; };
DP-2 = {
width = "1920";
height = "1080";
rate = "143.855";
posX = "1920";
};
}; };
}; };
}; };

View file

@ -32,6 +32,12 @@ in {
fsType = "vfat"; fsType = "vfat";
options = ["umask=027"]; 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; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;