mirror of
https://github.com/nix-community/plasma-manager.git
synced 2024-12-02 08:18:44 +03:00
.. | ||
home.nix | ||
README.md |
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.
};
};
}