Smos + intray + some nvim changes
This commit is contained in:
parent
9c4f714636
commit
2e8ec89ef5
13 changed files with 1995 additions and 75 deletions
home/features
3
home/features/cli/productivity/default.nix
Normal file
3
home/features/cli/productivity/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
imports = [ ./smos.nix ./intray.nix ];
|
||||
}
|
7
home/features/cli/productivity/intray.nix
Normal file
7
home/features/cli/productivity/intray.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
programs.intray = {
|
||||
enable = true;
|
||||
data-dir = "/persist/state/home/adrielus/Intray";
|
||||
cache-dir = "/persist/local/cache/home/adrielus/Intray";
|
||||
};
|
||||
}
|
11
home/features/cli/productivity/smos.nix
Normal file
11
home/features/cli/productivity/smos.nix
Normal 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
|
||||
];
|
||||
}
|
|
@ -1,6 +1,16 @@
|
|||
{ config, pkgs, ... }:
|
||||
let
|
||||
themeMap = pkgs.callPackage (import ./themes.nix) { };
|
||||
|
||||
discocss = pkgs.discocss.overrideAttrs (old: rec {
|
||||
version = "0.3.0";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "bddvlpr";
|
||||
repo = "discocss";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-2K7SPTvORzgZ1ZiCtS5TOShuAnmtI5NYkdQPRXIBP/I=";
|
||||
};
|
||||
});
|
||||
in
|
||||
{
|
||||
programs.discord = {
|
||||
|
@ -10,7 +20,7 @@ in
|
|||
enableDevtools = true;
|
||||
};
|
||||
|
||||
home.packages = [ pkgs.discocss ];
|
||||
home.packages = [ discocss ];
|
||||
xdg.configFile."discocss/custom.css".source = config.satellite.theming.get themeMap;
|
||||
|
||||
satellite.persistence.at.state.apps.Discord.directories = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue