Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
ea4489732b | |||
6c35b8fb99 | |||
76702ea878 | |||
b261195413 |
@ -12,6 +12,8 @@
|
||||
mods.x11.enable = true;
|
||||
programs.firefox.enable = false;
|
||||
|
||||
mods.polybar.fspath = "/home/tomoron";
|
||||
|
||||
mods.sync.homeFolder = "/home/tomoron/sync";
|
||||
mods.sync.defaultSynced = false;
|
||||
mods.sync.syncedAdditions = [ "42_desktop" "Downloads" ];
|
||||
|
@ -1,14 +1,19 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
# services.picom = {
|
||||
# backend = "xrender";
|
||||
# settings = {
|
||||
# blur = {
|
||||
# method = "none";
|
||||
# size = 0;
|
||||
# deviation = 0.0;
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
mods.game.enable = false;
|
||||
mods.hyprland.enable = false;
|
||||
mods.x11.enable = true;
|
||||
programs.firefox.enable = false;
|
||||
|
||||
services.picom = {
|
||||
backend = "xrender";
|
||||
settings = {
|
||||
blur = {
|
||||
method = "none";
|
||||
size = 0;
|
||||
deviation = 0.0;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -93,7 +93,7 @@
|
||||
#install stdheader 42
|
||||
".config/nvim/plugin/stdheader.vim".source = "${builtins.fetchGit {
|
||||
url = "https://github.com/42Paris/42header";
|
||||
rev = "71e6a4df6d72ae87a080282bf45bb993da6146b2";
|
||||
rev = "e6e6b191871545e0d43f1aad817070bc806b8fa7";
|
||||
ref = "master";
|
||||
}}/plugin/stdheader.vim";
|
||||
|
||||
|
@ -6,13 +6,19 @@
|
||||
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
|
||||
# +#+#+#+#+#+ +#+ #
|
||||
# Created: 2025/02/10 02:51:32 by tomoron #+# #+# #
|
||||
# Updated: 2025/08/05 14:50:41 by tomoron ### ########.fr #
|
||||
# Updated: 2025/08/07 15:30:07 by tomoron ### ########.fr #
|
||||
# #
|
||||
# **************************************************************************** #
|
||||
|
||||
{ lib, config, ... }:
|
||||
|
||||
{
|
||||
options.mods.polybar.fspath = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "/";
|
||||
description = "set the filesystem path for the remaining disk space";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.mods.x11.enable {
|
||||
services.polybar.enable = true;
|
||||
services.polybar.script = "pgrep polybar >/dev/null || polybar -q main -c \"$HOME/.config/polybar/config.ini\"&";
|
||||
@ -44,7 +50,7 @@
|
||||
|
||||
"module/filesystem" = {
|
||||
type = "internal/fs";
|
||||
mount-0 = "/home/tomoron";
|
||||
mount-0 = config.mods.polybar.fspath;
|
||||
interval = 10;
|
||||
fixed-values = true;
|
||||
format-mounted = "<label-mounted>";
|
||||
|
Reference in New Issue
Block a user