Set up waybar and building ISOs.

This commit is contained in:
Tom Alexander
2024-12-21 10:18:28 -05:00
parent a7f3754d25
commit a0f9f4baa4
13 changed files with 500 additions and 131 deletions

View File

@@ -0,0 +1,28 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
environment.systemPackages = with pkgs; [
waybar
];
home-manager.users.talexander =
{ pkgs, ... }:
{
home.file = {
".config/waybar/config" = {
source = ./files/waybar_config.json;
};
".config/waybar/style.css" = {
source = ./files/style.css;
};
};
};
}