This commit is contained in:
parent
f48152ff7a
commit
614a10248f
@ -1,5 +0,0 @@
|
||||
font=JetBrainsMono 10
|
||||
background-color=#282828
|
||||
text-color=#ebdbb2
|
||||
border-color=#98971a
|
||||
border-size=2
|
||||
@ -2,6 +2,7 @@
|
||||
{
|
||||
imports = [
|
||||
./lf
|
||||
./notif
|
||||
./terminal
|
||||
./wm/hyprland.nix
|
||||
];
|
||||
|
||||
6
modules/home-manager/notif/default.nix
Normal file
6
modules/home-manager/notif/default.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./mako.nix
|
||||
];
|
||||
}
|
||||
18
modules/home-manager/notif/mako.nix
Normal file
18
modules/home-manager/notif/mako.nix
Normal file
@ -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;
|
||||
|
||||
@ -14,6 +14,7 @@
|
||||
./groups
|
||||
./hardware
|
||||
./ide
|
||||
./notif
|
||||
./office
|
||||
./rice
|
||||
./shell
|
||||
|
||||
6
modules/nix/notif/default.nix
Normal file
6
modules/nix/notif/default.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./mako.nix
|
||||
];
|
||||
}
|
||||
17
modules/nix/notif/mako.nix
Normal file
17
modules/nix/notif/mako.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ config, lib, pkgs, ...}:
|
||||
let
|
||||
inherit (lib) mkIf mkOption types;
|
||||
in
|
||||
{
|
||||
options.smayzy.mako.enable = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "mako";
|
||||
};
|
||||
|
||||
config = mkIf config.smayzy.mako.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
mako
|
||||
];
|
||||
};
|
||||
}
|
||||
@ -25,8 +25,9 @@ in
|
||||
|
||||
fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono ];
|
||||
|
||||
smayzy.mako.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
mako
|
||||
wofi
|
||||
wlogout
|
||||
waybar
|
||||
|
||||
Loading…
Reference in New Issue
Block a user