plasma-manager/examples/homeManager
2024-06-13 16:10:07 +02:00
..
home.nix Change cursor.cursorTheme to cursor.theme (#204) 2024-06-13 16:10:07 +02:00
README.md Fix wrong url in example README (#133) 2024-04-18 19:10:14 +02:00

Getting Started

Add this repository as a channel:

$ nix-channel --add https://github.com/pjones/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.
    };
  };
}