feat: rename to sims
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication {
|
||||
pname = "fabric-nix-example";
|
||||
pname = "sims";
|
||||
version = "0.0.1";
|
||||
pyproject = true;
|
||||
|
||||
@@ -58,12 +58,12 @@ python3Packages.buildPythonApplication {
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/${python3Packages.python.sitePackages}
|
||||
cp -r bar $out/${python3Packages.python.sitePackages}/
|
||||
cp -r sims $out/${python3Packages.python.sitePackages}/
|
||||
|
||||
# If you have any scripts to install
|
||||
mkdir -p $out/bin
|
||||
cp scripts/launcher.py $out/bin/bar
|
||||
chmod +x $out/bin/bar
|
||||
cp scripts/launcher.py $out/bin/sims
|
||||
chmod +x $out/bin/sims
|
||||
|
||||
|
||||
runHook postInstall
|
||||
@@ -81,7 +81,7 @@ python3Packages.buildPythonApplication {
|
||||
meta = {
|
||||
changelog = "";
|
||||
description = ''
|
||||
Fabrix Bar Example
|
||||
sims status bar (companion to fenster WM).
|
||||
'';
|
||||
homepage = "https://github.com/wholikeel/fabric";
|
||||
license = lib.licenses.agpl3Only;
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
{ config, lib, ... }:
|
||||
|
||||
let
|
||||
cfg = config.stylix.targets.makku-bar;
|
||||
cfg = config.stylix.targets.sims;
|
||||
in
|
||||
{
|
||||
options.stylix.targets.makku-bar.enable =
|
||||
config.lib.stylix.mkEnableTarget "Makku Bar" true;
|
||||
options.stylix.targets.sims.enable =
|
||||
config.lib.stylix.mkEnableTarget "sims" true;
|
||||
|
||||
config = lib.mkIf (config.stylix.enable && cfg.enable) {
|
||||
services.makku-bar.settings.stylix = {
|
||||
services.sims.settings.stylix = {
|
||||
enable = true;
|
||||
colors = {
|
||||
base00 = config.lib.stylix.colors.base00; # background
|
||||
|
||||
Reference in New Issue
Block a user