add zammad to fw vm, add web-arm machine

This commit is contained in:
2024-08-16 22:42:00 +02:00
parent d46990b7fb
commit f86996cd28
87 changed files with 4681 additions and 135 deletions

View File

@@ -0,0 +1,11 @@
{ lib, pkgs, ... }:
{
boot.binfmt.registrations.appimage = {
wrapInterpreterInShell = false;
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
magicOrExtension = ''\x7fELF....AI\x02'';
};
}

View File

@@ -5,7 +5,7 @@
# i3 config file (v4)
# font for window titles and bar
font pango:Source Sans Pro 10
font pango:Source Sans Pro 15
# use win key
set $mod Mod4
@@ -211,7 +211,7 @@ bindsym $mod+Shift+c reload
bindsym $mod+Shift+r restart
# manage i3 session
bindsym $mod+Shift+e exec swaynag --background f1fa8c --border ffb86c --border-bottom-size 0 --button-background ffb86c --button-text 282a36 -t warning -f "pango:Hack 9" -m "Do you really want to exit?" -B "  Exit " "swaymsg exit" -B "  Lock " "pkill swaynag && swaylock -c 252525 -s center -i ~/.wallpaper.png" -B "  Reboot " "pkill swaynag && reboot" -B "  Shutdown " "pkill swaynag && shutdown -h now" -B " Suspend " "pkill swaynag && systemctl suspend"
bindsym $mod+Shift+e exec swaynag --background f1fa8c --border ffb86c --border-bottom-size 0 --button-background ffb86c --button-text 282a36 -t warning -f "pango:Hack 9" -m "Do you really want to exit?" -B "  Auto Suspend Off " "pkill swayidle" -B "  Exit " "swaymsg exit" -B "  Lock " "pkill swaynag && swaylock -c 252525 -s center -i ~/.wallpaper.png" -B "  Reboot " "pkill swaynag && reboot" -B "  Shutdown " "pkill swaynag && shutdown -h now" -B " Suspend " "pkill swaynag && systemctl suspend"
# resize window
bindsym $mod+r mode "  "
@@ -288,6 +288,9 @@ gaps inner 12
gaps outer 0
# startup applications
exec_always {
gsettings set org.gnome.desktop.interface text-scaling-factor 1.5
}
exec /run/wrappers/bin/gnome-keyring-daemon --start --daemonize
exec dbus-sway-environment
exec configure-gtk
@@ -311,7 +314,7 @@ exec 'sleep 2; swaymsg workspace $ws8; swaymsg layout tabbed'
exec mako --default-timeout=5000
# wallpaper
output eDP-1 scale 1.5
output eDP-1 scale 1
output eDP-1 bg #282a36 solid_color
output eDP-1 bg ~/.wallpaper.png center
output DP-4 bg #282a36 solid_color
@@ -353,7 +356,7 @@ bindswitch --locked lid:off output $laptop_screen enable
# Touchpad
input type:touchpad {
tap enabled
natural_scroll enabled
tap enabled
natural_scroll enabled
}

View File

@@ -21,6 +21,9 @@ let
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {
config = { allowUnfree = true; };
};
orca-slicer-pin = import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/67b4bf1df4ae54d6866d78ccbd1ac7e8a8db8b73.tar.gz";
}) {};
in {
imports = [
./social.nix
@@ -45,25 +48,17 @@ in {
theme = "where_is_my_sddm_theme_qt5";
};
# services.xserver = {
# enable = true;
# excludePackages = [ pkgs.xterm ];
# displayManager.gdm.enable = true;
# displayManager.gdm.wayland = true;
# # displayManager.sddm.enable = true;
# displayManager.sessionPackages = [ pkgs.sway ];
# displayManager.defaultSession = "sway";
# libinput.enable = true;
# };
environment.systemPackages = with pkgs; [
alsaUtils
audacity
apache-directory-studio
bitwarden
bitwarden-cli
rofi-rbw-wayland
cryptomator
quickemu
brave
chromium
firefox
@@ -110,6 +105,7 @@ in {
mqttui
networkmanagerapplet
nextcloud-client
nodejs_22
onlyoffice-bin
pavucontrol
pcmanfm

View File

@@ -1,5 +1,5 @@
* {
font-size: 20px;
font-size: 30px;
font-family: monospace;
}
@@ -33,7 +33,7 @@ window#waybar {
}
#workspaces button {
padding: 0 2px;
padding: 0 4px;
color: #f8f8f2;
}
#workspaces button.focused {
@@ -46,7 +46,7 @@ window#waybar {
#workspaces button:hover {
background: #252525;
border: #252525;
padding: 0 3px;
padding: 0 6px;
}
#network {
@@ -75,5 +75,5 @@ window#waybar {
#cpu,
#battery,
#disk {
padding: 0 10px;
padding: 0 20px;
}