1
Fork 0

Smos + intray + some nvim changes

This commit is contained in:
Matei Adriel 2023-09-04 05:58:39 +03:00
parent 9c4f714636
commit 2e8ec89ef5
No known key found for this signature in database
13 changed files with 1995 additions and 75 deletions
home/features/cli/productivity

View file

@ -0,0 +1,3 @@
{
imports = [ ./smos.nix ./intray.nix ];
}

View file

@ -0,0 +1,7 @@
{
programs.intray = {
enable = true;
data-dir = "/persist/state/home/adrielus/Intray";
cache-dir = "/persist/local/cache/home/adrielus/Intray";
};
}

View file

@ -0,0 +1,11 @@
{ config, ... }: {
programs.smos = {
enable = true;
notify.enable = true;
config = { };
};
satellite.persistence.at.data.apps.smos.directories = [
config.programs.smos.workflowDir
];
}