minor changes

This commit is contained in:
itsscb 2024-07-17 19:41:31 +02:00
parent d6c79c7295
commit eec99cda37
5 changed files with 1527 additions and 19 deletions

View File

@ -77,21 +77,22 @@ in {
}; };
xkb = { xkb = {
layout = "us"; layout = "us,de";
variant = ""; variant = ",";
options = "grp:alt_shift_toggle";
}; };
excludePackages = excludePackages =
(with pkgs; [ (with pkgs; [
nano nano
xterm xterm
])
++ (with pkgs.gnome; [
cheese
gnome-music
epiphany epiphany
cheese
geary geary
totem totem
])
++ (with pkgs.gnome; [
gnome-music
tali tali
iagno iagno
hitori hitori
@ -174,7 +175,7 @@ in {
}; };
hardware = { hardware = {
opengl.enable = true; graphics.enable = true;
nvidia.modesetting.enable = true; nvidia.modesetting.enable = true;
printers = { printers = {

View File

@ -35,3 +35,9 @@ checkOnSave.args = ["--", "-W", "clippy::pedantic", "-W", "clippy::nursery", "-W
[keys.normal] [keys.normal]
C-t = ":run-shell-command cargo test -- --nocapture" C-t = ":run-shell-command cargo test -- --nocapture"
[[language]]
name = "latex"
auto-format = true
[language-server.texlab]
command = "texlab"

View File

@ -35,10 +35,10 @@ env = QT_QPA_PLATFORMTHEME,qt5ct # change to qt6ct if you have that
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/ # For all categories, see https://wiki.hyprland.org/Configuring/Variables/
input { input {
kb_layout = us kb_layout = us,de
kb_variant = kb_variant = ,
kb_model = kb_model =
kb_options = kb_options = grp:alt_shift_toggle
kb_rules = kb_rules =
follow_mouse = 2 follow_mouse = 2
@ -103,10 +103,10 @@ dwindle {
preserve_split = yes # you probably want this preserve_split = yes # you probably want this
} }
master { # master {
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more # # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
new_is_master = false # new_is_master = false
} # }
gestures { gestures {
# See https://wiki.hyprland.org/Configuring/Variables/ for more # See https://wiki.hyprland.org/Configuring/Variables/ for more
@ -138,6 +138,7 @@ $mainMod = SUPER
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more # Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
bind = $mainMod, T, exec, $terminal bind = $mainMod, T, exec, $terminal
bind = $mainMod, SPACE, exec, hyprctl keyword input:kb_layout "next"
bind = $mainMod, Q, exec, $terminal bind = $mainMod, Q, exec, $terminal
bind = $mainMod, C, killactive, bind = $mainMod, C, killactive,
bind = $mainMod, M, exit, bind = $mainMod, M, exit,

View File

@ -17,7 +17,7 @@
}; };
iconTheme = { iconTheme = {
package = pkgs.gnome.adwaita-icon-theme; package = pkgs.adwaita-icon-theme;
name = "Adwaita"; name = "Adwaita";
}; };
@ -208,7 +208,27 @@
settings."org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1".name = "gt2"; settings."org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1".name = "gt2";
settings."org/gnome/settings-daemon/plugins/media-keys".custom-keybindings = ["/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/" "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"]; settings."org/gnome/settings-daemon/plugins/media-keys".custom-keybindings = ["/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/" "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"];
}; };
home.packages = [ home.packages = with pkgs; [
texlab
(texlive.combine {
inherit (texlive) scheme-full
latex-bin
latexindent
biber
biblatex
pgf
tikz-cd
xcolor
titlesec
fontawesome5
fontawesome
amsmath
amsfonts
hyperref
geometry
fontspec
latexmk;
})
]; ];
wayland.windowManager = { wayland.windowManager = {
hyprland = { hyprland = {
@ -291,9 +311,9 @@
}; };
}; };
master = { # master = {
new_is_master = false; # new_is_master = false;
}; # };
bindm = [ bindm = [
"$mod, mouse:272, movewindow" "$mod, mouse:272, movewindow"

1480
nixos-switch.log Normal file

File diff suppressed because it is too large Load Diff