plasma-manager/examples/homeManager
2024-06-25 20:27:09 +02:00
..
home.nix Fix marginsseparator panel widget typo (#230) 2024-06-25 20:27:09 +02:00
README.md Replace mentions of old repo location with the new one 2024-06-24 16:58:16 +02:00

Getting Started

Add this repository as a channel:

$ nix-channel --add https://github.com/nix-community/plasma-manager/archive/trunk.tar.gz plasma-manager

Update / unpack the channel:

$ nix-channel --update plasma-manager

Add to your configuration file, for example ~/.config/home-manager/plasma.nix:

{ pkgs, ...}:
{
  imports = [
    <plasma-manager/modules>
  ];

  programs = {
    plasma = {
      enable = true;
      # etc.
    };
  };
}