1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Add default waybar for now

This commit is contained in:
RGBCube 2023-11-11 23:08:24 +03:00
parent e426cad6e9
commit 2a11fc82f5
No known key found for this signature in database
3 changed files with 9 additions and 0 deletions

1
.gitignore vendored
View file

@ -21,6 +21,7 @@
!machines/enka/python/
!machines/enka/steam/
!machines/enka/steck/
!machines/enka/waybar/
!themes/

View file

@ -34,6 +34,7 @@
./python
./steam
./steck
./waybar
./fonts.nix
./localisation.nix

View file

@ -0,0 +1,7 @@
{ homeConfiguration, enabled, ... }:
homeConfiguration "nixos" {
programs.waybar = enabled {
systemd = enabled {};
};
}