nixos/hosts/FredOS-Macbook.nix

24 lines
504 B
Nix
Raw Permalink Normal View History

2026-03-28 13:42:35 +00:00
{ config, pkgs, lib, inputs, ... }:
2026-01-05 10:26:20 +00:00
2025-12-02 21:23:06 +00:00
{
config = lib.mkIf (config.networking.hostName == "FredOS-Macbook") {
environment.systemPackages = with pkgs; [
tlp
vesktop
adwaita-icon-theme
mission-center
vlc
geary
2026-05-01 11:07:04 +01:00
protonvpn-gui
onlyoffice-desktopeditors
2026-05-02 00:38:42 -07:00
woeusb
];
services.tlp.enable = false;
services.power-profiles-daemon.enable = true;
boot.loader.systemd-boot.configurationLimit = 5;
boot.initrd.systemd.enable = true;
};
2025-12-02 21:23:06 +00:00
}