mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
Miscellanious: fixed bug with obsidian, worked on Ly and added some texlivePackages
This commit is contained in:
@@ -8,7 +8,10 @@
|
|||||||
libs,
|
libs,
|
||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}: {
|
}:
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
@@ -158,6 +161,7 @@
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# use pkgs-unstable if you want the package from the unstable channel
|
# use pkgs-unstable if you want the package from the unstable channel
|
||||||
#we need to install gnome and kde utils individually as we dont use gnome
|
#we need to install gnome and kde utils individually as we dont use gnome
|
||||||
|
kdePackages.dolphin
|
||||||
gnome-calculator
|
gnome-calculator
|
||||||
snapshot
|
snapshot
|
||||||
gnome-characters
|
gnome-characters
|
||||||
@@ -222,10 +226,7 @@
|
|||||||
libsForQt5.qt5.qtgraphicaleffects
|
libsForQt5.qt5.qtgraphicaleffects
|
||||||
mprisence
|
mprisence
|
||||||
kdePackages.qt5compat
|
kdePackages.qt5compat
|
||||||
|
gif-for-cli
|
||||||
#latex
|
|
||||||
texliveMedium
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
|
|||||||
+12
-5
@@ -82,11 +82,18 @@
|
|||||||
(pkgs.callPackage ../../modules/scripts/QSnotifyhistory.nix {})
|
(pkgs.callPackage ../../modules/scripts/QSnotifyhistory.nix {})
|
||||||
#pkgs
|
#pkgs
|
||||||
pkgs.gruvbox-gtk-theme
|
pkgs.gruvbox-gtk-theme
|
||||||
# # Adds the 'hello' command to your environment. It prints a friendly
|
(pkgs.texliveMedium.withPackages (
|
||||||
# # "Hello, world!" when run.
|
ps: with ps; [
|
||||||
# pkgs.hello
|
# these few pkgs are used in the CV template
|
||||||
|
titlesec # allows creating custom \section
|
||||||
# # It is sometimes useful to fine-tune packages, for example, by applying
|
marvosym # some symboles
|
||||||
|
ebgaramond # Use the EB Garamond font
|
||||||
|
microtype # To enable letterspacing
|
||||||
|
fontaxes
|
||||||
|
#(setq org-latex-compiler "lualatex")
|
||||||
|
#(setq org-preview-latex-default-process 'dvisvgm)
|
||||||
|
]))
|
||||||
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
||||||
# # overrides. You can do that directly here, just don't forget the
|
# # overrides. You can do that directly here, just don't forget the
|
||||||
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
||||||
# # fonts?
|
# # fonts?
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
vaults.miscellanious = {
|
vaults.miscellanious = {
|
||||||
enable = true;
|
enable = true;
|
||||||
target = "/kdrive/Notes/miscellanious";
|
#target = "/kdrive/Notes/miscellanious"; #not directly to kdrive. It causes problems
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
# Core animation
|
# Core animation
|
||||||
animation = "colormix"; # none or doom or matrix or gameoflife or a dur file
|
animation = "gameoflife"; # none or doom or matrix or gameoflife or a dur file
|
||||||
# Ly supports 24-bit true color with styling, which means each color is a 32-bit value.
|
# Ly supports 24-bit true color with styling, which means each color is a 32-bit value.
|
||||||
# The format is 0xSSRRGGBB, where SS is the styling, RR is red, GG is green, and BB is blue.
|
# The format is 0xSSRRGGBB, where SS is the styling, RR is red, GG is green, and BB is blue.
|
||||||
# Here are the possible styling options:
|
# Here are the possible styling options:
|
||||||
@@ -27,9 +27,9 @@
|
|||||||
fg = "0x01cd6400";
|
fg = "0x01cd6400";
|
||||||
full_color = true;
|
full_color = true;
|
||||||
hide_borders = false;
|
hide_borders = false;
|
||||||
hide_key_hints = true;
|
hide_key_hints = false;
|
||||||
hide_keyboard_locks = true;
|
hide_keyboard_locks = true;
|
||||||
hide_version_string = true;
|
hide_version_string = false;
|
||||||
input_len = 34;
|
input_len = 34;
|
||||||
lang = "en";
|
lang = "en";
|
||||||
numlock = false;
|
numlock = false;
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
#text_in_center = false;
|
#text_in_center = false;
|
||||||
|
|
||||||
# Animation: Conway’s Game of Life (optional, comment out for minimal setup)
|
# Animation: Conway’s Game of Life (optional, comment out for minimal setup)
|
||||||
gameoflife_fg = "0x01cd6a00";
|
gameoflife_fg = "0x40FFFFFF";
|
||||||
|
|
||||||
gameoflife_frame_delay = 3;
|
gameoflife_frame_delay = 3;
|
||||||
gameoflife_entropy_interval = 10;
|
gameoflife_entropy_interval = 10;
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ things to do?
|
|||||||
|
|
||||||
Review windowrules when only one window
|
Review windowrules when only one window
|
||||||
|
|
||||||
|
setup lsp in neovim
|
||||||
|
|
||||||
Setup obsidian (plugsins, etc.)
|
Setup obsidian (plugsins, etc.)
|
||||||
maybe setup some vaults in obsidian.nix. It seams that it cant direclty use kdrive as a vault.
|
maybe setup some vaults in obsidian.nix. It seams that it cant direclty use kdrive as a vault.
|
||||||
|
|||||||
Reference in New Issue
Block a user