os/system/lime/home.nix

16 lines
233 B
Nix
Raw Normal View History

2023-08-29 15:32:56 +02:00
{ pkgs, ... }:
2023-06-17 07:53:58 +02:00
{
custom.gui = {
enable = true;
bar = {
network.wifi = "wlp0s20f3";
2023-06-17 17:41:19 +02:00
battery.name = "BAT0";
2023-06-17 07:53:58 +02:00
};
};
programs.iamb.enable = true;
2023-08-29 15:32:56 +02:00
home.packages = with pkgs; [
qbittorrent
vlc
];
2023-06-17 07:53:58 +02:00
}