cleanup themes
fix small errors in themes and reset folder changed to preserve initial Nextcloud sync
This commit is contained in:
@@ -33,7 +33,6 @@
|
||||
# archives
|
||||
unzip
|
||||
zip
|
||||
fuse
|
||||
|
||||
# misc
|
||||
tree
|
||||
@@ -42,7 +41,6 @@
|
||||
# system tools
|
||||
lm_sensors
|
||||
pavucontrol
|
||||
sshfs
|
||||
|
||||
cups
|
||||
firefox
|
||||
@@ -57,6 +55,9 @@
|
||||
# ── whatsie insecure ──────────────────────────────────────────────────
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
permittedInsecurePackages = [ "electron-32.3.3" "qtwebengine-5.15.19" ];
|
||||
permittedInsecurePackages = [
|
||||
"electron-32.3.3"
|
||||
"qtwebengine-5.15.19"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -57,10 +57,10 @@
|
||||
(box
|
||||
:space-evenly false
|
||||
(button
|
||||
:class "${idle_inhibitor == 'start' ? 'idleOn' : 'idleOff' }"
|
||||
:class "${idle_inhibitor == 'stop' ? 'idleOff' : 'idleOn' }"
|
||||
:onclick "systemctl --user is-active hypridle.service && systemctl --user stop hypridle.service || systemctl --user start hypridle.service"
|
||||
(label
|
||||
:text "${idle_inhibitor == 'start' ? '' : '' }"))))
|
||||
:text "${idle_inhibitor == 'stop' ? '' : '' }"))))
|
||||
|
||||
;; ── Audio ───────────────────────────────────────────────────────────
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
"-"
|
||||
"X"
|
||||
];
|
||||
update_parents = true;
|
||||
status_propagation.up = true;
|
||||
};
|
||||
foldtext = {
|
||||
title_transformer.__raw = ''
|
||||
@@ -169,11 +169,8 @@
|
||||
new_file_template = {
|
||||
use_template = true;
|
||||
placeholders = {
|
||||
before = {
|
||||
title = "link_title";
|
||||
date = "os_date";
|
||||
};
|
||||
after = { };
|
||||
title = "link_title";
|
||||
date = "os_date";
|
||||
};
|
||||
template = ''
|
||||
---
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
programs.taskwarrior = {
|
||||
enable = true;
|
||||
package = pkgs.taskwarrior3;
|
||||
dataLocation = "~/Nextcloud/tasks";
|
||||
dataLocation = "~/Nextcloud/.tasks";
|
||||
config = {
|
||||
uda.parentName = {
|
||||
type = "string";
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
};
|
||||
tool.fzf-preview = "bat -p --color always {-1}";
|
||||
notebook = {
|
||||
dir = "~/zettelkasten"; # TODO: change location to Nextcloud
|
||||
dir = "~/Nextcloud/zettelkasten";
|
||||
};
|
||||
alias = {
|
||||
n = "zk new inbox/$@";
|
||||
|
||||
@@ -15,7 +15,7 @@ in
|
||||
# host = "127.0.0.1"; # default listen address is 127.0.0.1
|
||||
# port = 7000; # default http port is 7000
|
||||
notes = [
|
||||
"/home/elias/zettelkasten"
|
||||
"/home/elias/Nextcloud/zettelkasten"
|
||||
];
|
||||
# TODO: currentSystem
|
||||
package = emanote.packages."x86_64-linux".default;
|
||||
|
||||
@@ -7,11 +7,11 @@
|
||||
imports = [
|
||||
./cursor.nix
|
||||
./fnott.nix
|
||||
./gtk.nix
|
||||
# ./gtk.nix TODO: check why so weird
|
||||
./hyprlock.nix
|
||||
./nvim.nix
|
||||
./taskwarrior.nix
|
||||
./qt.nix
|
||||
# ./qt.nix TODO: check why so weird
|
||||
];
|
||||
|
||||
catppuccin = {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.taskwarrior.colorTheme = ./catppuccin-taskwarrior.theme;
|
||||
programs.taskwarrior.colorTheme = ./taskwarrior.theme;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user