@@ -2,6 +2,7 @@
|
||||
{
|
||||
imports = [
|
||||
./lf
|
||||
./notif
|
||||
./terminal
|
||||
./wm/hyprland.nix
|
||||
];
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./mako.nix
|
||||
];
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{ lib, smayzy, ... }:
|
||||
let
|
||||
inherit (lib) mkIf;
|
||||
in
|
||||
{
|
||||
config = mkIf smayzy.mako.enable {
|
||||
services.mako = {
|
||||
enable = true;
|
||||
settings = {
|
||||
font="JetBrainsMono 10";
|
||||
background-color="#282828";
|
||||
text-color="#ebdbb2";
|
||||
border-color="#98971a";
|
||||
border-size=2;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
smayzy,
|
||||
...
|
||||
@@ -13,10 +12,6 @@ in
|
||||
|
||||
home.file = lib.mkMerge [
|
||||
{
|
||||
".config/mako/config" = {
|
||||
source = builtins.toPath ../../../dotfiles/mako/config;
|
||||
force = true;
|
||||
};
|
||||
".config/wofi" = {
|
||||
source = builtins.toPath ../../../dotfiles/wofi;
|
||||
recursive = true;
|
||||
|
||||
Reference in New Issue
Block a user