Modified polybar

This commit is contained in:
marc
2022-11-06 15:35:47 +01:00
parent 0f4b895d38
commit c3dd5dda65
20 changed files with 353 additions and 207 deletions

View File

@@ -3,5 +3,6 @@
{
imports = [
./alacritty.nix
./spotify.nix
];
}

View File

@@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.samfelag.modules.app.spotify;
in
{
options.samfelag.modules.app.spotify = {
enable = mkEnableOption "spotify";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
spotify
];
};
}