mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-22 13:24:40 +01:00
lmao
This commit is contained in:
parent
224c80c420
commit
1cd19687be
|
@ -1,4 +0,0 @@
|
||||||
sudo nixos-rebuild switch --flake . \
|
|
||||||
--impure --override-input mac-brcm-fw path:/home/jade/mac-brcm-fw \
|
|
||||||
--build-host 192.168.178.119 --no-build-nix
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
sudo nixos-rebuild switch --flake . \
|
|
||||||
--impure --override-input mac-brcm-fw path:/home/jade/mac-brcm-fw \
|
|
||||||
|
|
|
@ -27,12 +27,13 @@ with builtins;
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
|
nushellFull networkmanager htmlq
|
||||||
|
|
||||||
wget git neofetch pciutils zip unzip gnutar iw btop nodejs jdk8 jdk11
|
wget git neofetch pciutils zip unzip gnutar iw btop nodejs jdk8 jdk11
|
||||||
jdk libsecret gh nix-prefetch-scripts fzf glab ripgrep
|
jdk libsecret gh nix-prefetch-scripts fzf glab ripgrep
|
||||||
sl lolcat appimage-run git-crypt file whois p7zip file nmap cmatrix tree
|
sl lolcat appimage-run git-crypt file whois p7zip file nmap cmatrix tree
|
||||||
socat smartmontools
|
socat smartmontools mprocs
|
||||||
|
dig aria2 usbutils
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -101,7 +102,7 @@ with builtins;
|
||||||
|
|
||||||
users.users.jade = {
|
users.users.jade = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "input" "uinput" "libvirtd" "adbusers" "dialout" "plugdev" ];
|
extraGroups = [ "wheel" "input" "uinput" "libvirtd" "adbusers" "dialout" "plugdev" "wireshark" ];
|
||||||
packages = [
|
packages = [
|
||||||
pkgs.marksman
|
pkgs.marksman
|
||||||
];
|
];
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
# nixpkgs.url = "nixpkgs/nixos-22.11";
|
# nixpkgs.url = "nixpkgs/nixos-22.11";
|
||||||
nixpkgs-stable.url = "nixpkgs/nixos-23.05";
|
nixpkgs-stable.url = "nixpkgs/nixos-23.05";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager/release-22.11";
|
url = "github:nix-community/home-manager";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
nixos-hardware.url = "github:networkException/nixos-hardware/apple-t2-init";
|
nixos-hardware.url = "github:networkException/nixos-hardware/apple-t2-init";
|
||||||
|
|
|
@ -13,6 +13,7 @@ import System.Exit
|
||||||
|
|
||||||
import XMonad.Hooks.StatusBar
|
import XMonad.Hooks.StatusBar
|
||||||
import XMonad.Hooks.StatusBar.PP
|
import XMonad.Hooks.StatusBar.PP
|
||||||
|
import XMonad.Hooks.EwmhDesktops
|
||||||
|
|
||||||
import qualified XMonad.StackSet as W
|
import qualified XMonad.StackSet as W
|
||||||
import qualified Data.Map as M
|
import qualified Data.Map as M
|
||||||
|
@ -76,23 +77,7 @@ myRemaps = KeymapTable [ ((0, xK_a), (0, xK_b)) ]
|
||||||
myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
|
myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
|
||||||
[ ((modm, xK_Return), spawn $ XMonad.terminal conf)
|
[ ((modm, xK_Return), spawn $ XMonad.terminal conf)
|
||||||
, ((modm .|. shiftMask, xK_q), kill)
|
, ((modm .|. shiftMask, xK_q), kill)
|
||||||
-- Rotate through the available layout algorithms
|
-- -- Rotate through the available layout algorithms
|
||||||
, ((modm, xK_space ), sendMessage NextLayout)
|
|
||||||
-- rofiing
|
|
||||||
, ((modm, xK_d), spawn "rofi -show drun")
|
|
||||||
, ((modm .|. shiftMask, xK_e), spawn "rofi -show \"desktopctl\" -modes \"desktopctl:$(which desktopctl)\"")
|
|
||||||
, ((modm, xK_m), spawn "menu-qalc")
|
|
||||||
, ((modm, xK_i), spawn "rofimoji -f alchemical_symbols anatolian_hieroglyphs emojis braille_patterns box_drawing chess_symbols emoticons geometric_shapes gothic greek_extended math mathematical_alphanumeric_symbols mathematical_operators miscellaneous_symbols miscellaneous_mathematical_symbols-a miscellaneous_mathematical_symbols-b miscellaneous_symbols_and_arrows miscellaneous_symbols_and_pictographs miscellaneous_technical modi modifier_tone_letters musical_symbols nerd_font number_forms shorthand_format_controls specials variation_selectors vertical_forms -a copy")
|
|
||||||
-- screenshotting
|
|
||||||
-- TODO: Fix/rewrite window-screenshot.sh
|
|
||||||
, ((modm, xK_w), spawn "window-screenshot.sh")
|
|
||||||
, ((modm, xK_s), spawn "flameshot gui -c -p $HOME/Pictures/screenshots")
|
|
||||||
, ((modm, xK_a), spawn "flameshot screen -c -p $HOME/Pictures/screenshots")
|
|
||||||
, ((modm, xK_t), spawn "ocr-screenshot.sh")
|
|
||||||
|
|
||||||
[ ((modm, xK_Return), spawn $ XMonad.terminal conf)
|
|
||||||
, ((modm .|. shiftMask, xK_q), kill)
|
|
||||||
-- Rotate through the available layout algorithms
|
|
||||||
, ((modm, xK_space ), sendMessage NextLayout)
|
, ((modm, xK_space ), sendMessage NextLayout)
|
||||||
|
|
||||||
-- rofiing
|
-- rofiing
|
||||||
|
@ -105,7 +90,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
|
||||||
|
|
||||||
-- screenshotting
|
-- screenshotting
|
||||||
-- TODO: Fix/rewrite window-screenshot.sh
|
-- TODO: Fix/rewrite window-screenshot.sh
|
||||||
, ((modm, xK_w), spawn "window-screenshot.sh")
|
, ((modm, xK_w), spawn "window-screenshot.nu")
|
||||||
, ((modm, xK_s), spawn "flameshot gui -c -p $HOME/Pictures/screenshots")
|
, ((modm, xK_s), spawn "flameshot gui -c -p $HOME/Pictures/screenshots")
|
||||||
, ((modm, xK_a), spawn "flameshot screen -c -p $HOME/Pictures/screenshots")
|
, ((modm, xK_a), spawn "flameshot screen -c -p $HOME/Pictures/screenshots")
|
||||||
, ((modm, xK_t), spawn "ocr-screenshot.sh")
|
, ((modm, xK_t), spawn "ocr-screenshot.sh")
|
||||||
|
@ -306,7 +291,7 @@ myStartupHook = do
|
||||||
-- Run xmonad with the settings you specify. No need to modify this.
|
-- Run xmonad with the settings you specify. No need to modify this.
|
||||||
--
|
--
|
||||||
mySB = statusBarProp "polybar" (pure xmobarPP)
|
mySB = statusBarProp "polybar" (pure xmobarPP)
|
||||||
main = xmonad $ withEasySB mySB defToggleStrutsKey defaults
|
main = xmonad $ withEasySB mySB defToggleStrutsKey (ewmh defaults)
|
||||||
|
|
||||||
-- A structure containing your configuration settings, overriding
|
-- A structure containing your configuration settings, overriding
|
||||||
-- fields in the default config. Any you don't override, will
|
-- fields in the default config. Any you don't override, will
|
||||||
|
|
|
@ -53,6 +53,11 @@ in {
|
||||||
device = "DELL081C:00 044E:121F Mouse";
|
device = "DELL081C:00 044E:121F Mouse";
|
||||||
sensitivity = 255;
|
sensitivity = 255;
|
||||||
};
|
};
|
||||||
|
hardware.usbWwan.enable = true;
|
||||||
|
systemd.services."ModemManager".enable = true;
|
||||||
|
systemd.services."ModemManager".wants = [ "NetworkManager.service" ];
|
||||||
|
systemd.services."ModemManager".wantedBy = [ "multi-user.target" ];
|
||||||
|
programs.wireshark.enable = true;
|
||||||
|
|
||||||
boot.resumeDevice = "/dev/disk/by-uuid/4f9e8afa-f8d7-40bf-b3ea-17e8e8fbb694";
|
boot.resumeDevice = "/dev/disk/by-uuid/4f9e8afa-f8d7-40bf-b3ea-17e8e8fbb694";
|
||||||
boot.kernelParams = [ "resume_offset=7380652" ];
|
boot.kernelParams = [ "resume_offset=7380652" ];
|
||||||
|
@ -64,7 +69,7 @@ in {
|
||||||
|
|
||||||
services.xserver.libinput.touchpad.tapping = false;
|
services.xserver.libinput.touchpad.tapping = false;
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.vivaldi pkgs.vivaldi-ffmpeg-codecs pkgs.plantuml ];
|
environment.systemPackages = [ pkgs.vivaldi pkgs.vivaldi-ffmpeg-codecs pkgs.plantuml pkgs.mqttui pkgs.mobile-broadband-provider-info pkgs.modem-manager-gui pkgs.wireshark];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
|
5
justfile
Normal file
5
justfile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
test:
|
||||||
|
sudo nixos-rebuild test --flake . --impure
|
||||||
|
|
||||||
|
build:
|
||||||
|
sudo nixos-rebuild switch --flake . --impure
|
|
@ -13,6 +13,7 @@
|
||||||
jack.enable = true;
|
jack.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
hardware.pulseaudio.enable = pkgs.lib.mkForce false;
|
||||||
sound.mediaKeys.enable = true;
|
sound.mediaKeys.enable = true;
|
||||||
home-manager.users.jade = { pkgs, ... }: {
|
home-manager.users.jade = { pkgs, ... }: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.jade.desktop;
|
cfg = config.jade.desktop;
|
||||||
|
# window-screenshot = pkgs.writeTextFile "window-screenshot.nu" (builtins.readFile ../../other/scripts/desktop/window-screenshot.nu);
|
||||||
window-screenshot = pkgs.writeShellScriptBin "window-screenshot.sh" (builtins.readFile ../../other/scripts/desktop/window-screenshot.sh);
|
window-screenshot = pkgs.writeShellScriptBin "window-screenshot.sh" (builtins.readFile ../../other/scripts/desktop/window-screenshot.sh);
|
||||||
# desktop-ctl = pkgs.writeShellScriptBin "desktop-ctl.sh" (builtins.readFile ../scripts/desktop/desktop-ctl.sh);
|
# desktop-ctl = pkgs.writeShellScriptBin "desktop-ctl.sh" (builtins.readFile ../scripts/desktop/desktop-ctl.sh);
|
||||||
desktop-ctl = import ../../other/scripts/desktop/desktopctl.nix { inherit pkgs; };
|
desktop-ctl = import ../../other/scripts/desktop/desktopctl.nix { inherit pkgs; };
|
||||||
|
@ -102,10 +103,13 @@ in with lib; {
|
||||||
|
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
xterm.enable = false;
|
xterm.enable = false;
|
||||||
|
# gnome = {
|
||||||
|
# enable = true;
|
||||||
|
# };
|
||||||
};
|
};
|
||||||
|
|
||||||
displayManager = {
|
displayManager = {
|
||||||
#defaultSession = "none+i3";
|
defaultSession = "none+xmonad";
|
||||||
gdm.enable = true;
|
gdm.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -187,11 +191,17 @@ in with lib; {
|
||||||
theme = ../../other/rofi-themes/applauncher.rasi;
|
theme = ../../other/rofi-themes/applauncher.rasi;
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
spotifyd spotify-tui
|
||||||
|
|
||||||
#nushell
|
#nushell
|
||||||
nu_scripts direnv
|
nu_scripts direnv
|
||||||
|
|
||||||
|
just bacon
|
||||||
|
|
||||||
magic-wormhole-rs
|
magic-wormhole-rs
|
||||||
|
|
||||||
|
yt-dlp
|
||||||
|
|
||||||
argyllcms
|
argyllcms
|
||||||
displaycal
|
displaycal
|
||||||
|
|
||||||
|
@ -201,11 +211,13 @@ in with lib; {
|
||||||
i3lock rofimoji feh xorg.xinput arandr flameshot
|
i3lock rofimoji feh xorg.xinput arandr flameshot
|
||||||
tesseract5 imagemagick xclip xmacro libwacom wacomtablet xorg.xev
|
tesseract5 imagemagick xclip xmacro libwacom wacomtablet xorg.xev
|
||||||
|
|
||||||
|
syncplay
|
||||||
|
|
||||||
# categories
|
# categories
|
||||||
# filemanager
|
# filemanager
|
||||||
xfce.thunar xfce.tumbler xfce.thunar-archive-plugin gnome.file-roller
|
xfce.thunar xfce.tumbler xfce.thunar-archive-plugin gnome.file-roller
|
||||||
# media/file viewers
|
# media/file viewers
|
||||||
vlc evince nomacs
|
vlc mpv evince nomacs
|
||||||
|
|
||||||
# from environment.systemPackages cleanup
|
# from environment.systemPackages cleanup
|
||||||
font-manager xdotool xorg.xwininfo gparted librewolf firefox uhk-agent
|
font-manager xdotool xorg.xwininfo gparted librewolf firefox uhk-agent
|
||||||
|
|
|
@ -1,34 +1,60 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
let
|
||||||
|
addNuShebang = path: builtins.concatStringsSep "\n\n" [
|
||||||
|
"#!${pkgs.nushellFull}/bin/nu"
|
||||||
|
(builtins.readFile path)
|
||||||
|
];
|
||||||
|
in {
|
||||||
config = {
|
config = {
|
||||||
networking = {
|
networking = {
|
||||||
networkmanager.wifi.backend = "wpa_supplicant";
|
networkmanager = {
|
||||||
extraHosts = ''
|
wifi.backend = "wpa_supplicant";
|
||||||
127.0.0.1 www.youtube.com
|
dispatcherScripts = [
|
||||||
127.0.0.1 www.reddit.com
|
{
|
||||||
127.0.0.1 www.tiktok.com
|
type = "basic";
|
||||||
127.0.0.1 www.twitter.com
|
source = pkgs.writeText "dispatcher" (addNuShebang ../../other/scripts/dispatcher.nu);
|
||||||
127.0.0.1 www.instagram.com
|
}
|
||||||
127.0.0.1 www.facebook.com
|
];
|
||||||
127.0.0.1 www.snapchat.com
|
|
||||||
|
|
||||||
127.0.0.1 youtube.com
|
|
||||||
127.0.0.1 reddit.com
|
|
||||||
127.0.0.1 tiktok.com
|
|
||||||
127.0.0.1 twitter.com
|
|
||||||
127.0.0.1 instagram.com
|
|
||||||
127.0.0.1 facebook.com
|
|
||||||
127.0.0.1 snapchat.com
|
|
||||||
|
|
||||||
127.0.0.1 google-analytics.com
|
|
||||||
127.0.0.1 stats.g.doubleclick.net
|
|
||||||
127.0.0.1 googleadservices.com
|
|
||||||
127.0.0.1 googletagmanager.com
|
|
||||||
127.0.0.1 googletagservices.com
|
|
||||||
127.0.0.1 googlesyndication.com
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
hosts = {
|
||||||
|
"127.0.0.1" = [
|
||||||
|
"www.tiktok.com"
|
||||||
|
"www.twitter.com"
|
||||||
|
"www.instagram.com"
|
||||||
|
"www.facebook.com"
|
||||||
|
"www.snapchat.com"
|
||||||
|
|
||||||
|
"tiktok.com"
|
||||||
|
"twitter.com"
|
||||||
|
"instagram.com"
|
||||||
|
"facebook.com"
|
||||||
|
"snapchat.com"
|
||||||
|
|
||||||
|
"google-analytics.com"
|
||||||
|
"stats.g.doubleclick.net"
|
||||||
|
"googleadservices.com"
|
||||||
|
"googletagmanager.com"
|
||||||
|
"googletagservices.com"
|
||||||
|
"googlesyndication.com"
|
||||||
|
];
|
||||||
|
"10.31.208.9" = [
|
||||||
|
"mqtt.z9"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
environment.etc = (with builtins; (
|
||||||
|
listToAttrs (
|
||||||
|
map (v: {
|
||||||
|
name = "networkhooks/${v}";
|
||||||
|
value = {
|
||||||
|
text = addNuShebang ../../other/scripts/networkhooks/${v};
|
||||||
|
mode = "0755";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
(attrNames (readDir ../../other/scripts/networkhooks))
|
||||||
|
)
|
||||||
|
));
|
||||||
systemd.services."NetworkManager-wait-online".enable = false;
|
systemd.services."NetworkManager-wait-online".enable = false;
|
||||||
services.mullvad-vpn.enable = true;
|
services.mullvad-vpn.enable = true;
|
||||||
home-manager.users.jade = { pkgs, ... }: {
|
home-manager.users.jade = { pkgs, ... }: {
|
||||||
|
|
|
@ -30,16 +30,16 @@ in with lib; {
|
||||||
space."=" = ":fmt";
|
space."=" = ":fmt";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
languages = [
|
languages = {
|
||||||
{
|
"php" = {
|
||||||
name = "php";
|
name = "php";
|
||||||
file-types = [ "php" ];
|
file-types = [ "php" ];
|
||||||
language-server = {
|
language-server = {
|
||||||
command = "psalm";
|
command = "psalm";
|
||||||
args = ["--language-server"];
|
args = ["--language-server"];
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
];
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
49
modules/utils.nix
Normal file
49
modules/utils.nix
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
{ pkgs, lib }: rec {
|
||||||
|
# taken from https://github.com/NixOS/nixpkgs/blob/3650808d85dccbfa3be3d785dfd3ce33a757bd2c/pkgs/build-support/trivial-builders/default.nix#L335
|
||||||
|
writeNuShellApplication =
|
||||||
|
{ name
|
||||||
|
, text
|
||||||
|
, runtimeInputs ? [ ]
|
||||||
|
, meta ? { }
|
||||||
|
, checkPhase ? null
|
||||||
|
}:
|
||||||
|
writeTextFile {
|
||||||
|
inherit name meta;
|
||||||
|
executable = true;
|
||||||
|
destination = "/bin/${name}";
|
||||||
|
allowSubstitutes = true;
|
||||||
|
preferLocalBuild = false;
|
||||||
|
text = ''
|
||||||
|
#!${pkgs.nushell}
|
||||||
|
'' + lib.optionalString (runtimeInputs != [ ]) ''
|
||||||
|
|
||||||
|
$env.PATH = ($env.PATH | split row (char esep) | prepend '${lib.makeBinPath runtimeInputs}');
|
||||||
|
'' + ''
|
||||||
|
|
||||||
|
${text}
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkPhase =
|
||||||
|
# GHC (=> shellcheck) isn't supported on some platforms (such as risc-v)
|
||||||
|
# but we still want to use writeShellApplication on those platforms
|
||||||
|
if checkPhase == null then ''
|
||||||
|
runHook preCheck
|
||||||
|
|
||||||
|
nu -c "nu-check -d $target"
|
||||||
|
|
||||||
|
runHook postCheck
|
||||||
|
''
|
||||||
|
else checkPhase;
|
||||||
|
};
|
||||||
|
packageNushellApplication =
|
||||||
|
{ name
|
||||||
|
, path
|
||||||
|
, runtimeInputs ? [ ]
|
||||||
|
, meta ? { }
|
||||||
|
, checkPhase ? null
|
||||||
|
}:
|
||||||
|
writeNuShellApplication {
|
||||||
|
inherit name runtimeInputs meta checkPhase;
|
||||||
|
text = builtins.readFile path;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,12 +6,22 @@ in with lib; {
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home-manager.users.jade = { pkgs, ... }: {
|
home-manager.users.jade = { pkgs, ... }: {
|
||||||
|
home.file = {
|
||||||
|
zellij-forgot = {
|
||||||
|
target = ".config/zellij/plugins/zellij-forgot.wasm";
|
||||||
|
source = builtins.fetchurl "https://github.com/karimould/zellij-forgot/releases/download/0.2.0/zellij_forgot.wasm";
|
||||||
|
};
|
||||||
|
monocle = {
|
||||||
|
target = ".config/zellij/plugins/monocle.wasm";
|
||||||
|
source = builtins.fetchurl "https://github.com/imsnif/monocle/releases/download/0.37.2/monocle.wasm";
|
||||||
|
};
|
||||||
|
};
|
||||||
programs.zellij = {
|
programs.zellij = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
theme = "gruvbox-dark";
|
theme = "gruvbox-dark";
|
||||||
themes.gruvbox-dark = {
|
themes.gruvbox-dark = {
|
||||||
fg = "#D5C4A1";
|
fg = "#d5c4a1";
|
||||||
bg = "#282828";
|
bg = "#282828";
|
||||||
black = "#3C3836";
|
black = "#3C3836";
|
||||||
red = "#CC241D";
|
red = "#CC241D";
|
||||||
|
@ -20,9 +30,16 @@ in with lib; {
|
||||||
blue = "#3C8588";
|
blue = "#3C8588";
|
||||||
magenta = "#B16286";
|
magenta = "#B16286";
|
||||||
cyan = "#689D6A";
|
cyan = "#689D6A";
|
||||||
white = "#FBF1C7";
|
white = "#665c54";
|
||||||
orange = "#D65D0E";
|
orange = "#D65D0E";
|
||||||
};
|
};
|
||||||
|
# keybinds = {
|
||||||
|
# session = {
|
||||||
|
# "bind \"o\"" = {
|
||||||
|
# LaunchOrFocusPlugin = ["file:/home/jade/.config/zellij/plugins/monocle.wasm" { floating = true; }];
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
# };
|
||||||
pane_frames = false;
|
pane_frames = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -247,9 +247,21 @@ $env.config = {
|
||||||
|
|
||||||
hooks: {
|
hooks: {
|
||||||
pre_prompt: [{ ||
|
pre_prompt: [{ ||
|
||||||
let direnv = (direnv export json | from json)
|
let direnv = (direnv export json | from json | default {})
|
||||||
let direnv = if ($direnv | length) == 1 { $direnv } else { {} }
|
if ($direnv | is-empty) {
|
||||||
$direnv | load-env
|
return
|
||||||
|
}
|
||||||
|
$direnv
|
||||||
|
| items {|key, value|
|
||||||
|
{
|
||||||
|
key: $key
|
||||||
|
value: (if $key in $env.ENV_CONVERSIONS {
|
||||||
|
do ($env.ENV_CONVERSIONS | get $key | get from_string) $value
|
||||||
|
} else {
|
||||||
|
$value
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} | transpose -ird | load-env
|
||||||
}] # run before the prompt is shown
|
}] # run before the prompt is shown
|
||||||
pre_execution: [{ null }] # run before the repl input is run
|
pre_execution: [{ null }] # run before the repl input is run
|
||||||
env_change: {
|
env_change: {
|
||||||
|
@ -793,3 +805,5 @@ start_zellij
|
||||||
alias gnix = cd ~/nix-configs;
|
alias gnix = cd ~/nix-configs;
|
||||||
alias grepo = cd ~/Documents/repos;
|
alias grepo = cd ~/Documents/repos;
|
||||||
alias wh = wormhole-rs;
|
alias wh = wormhole-rs;
|
||||||
|
alias nix-shell = nix-shell --run 'nu -li';
|
||||||
|
alias nsp = nix-shell --run 'nu -li' -p;
|
||||||
|
|
19
other/scripts/desktop/window-screenshot.nu
Normal file
19
other/scripts/desktop/window-screenshot.nu
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
#!/usr/bin/env nu
|
||||||
|
|
||||||
|
def main [ ] {
|
||||||
|
let reg = (
|
||||||
|
xwininfo -id (xdotool getactivewindow)
|
||||||
|
| lines
|
||||||
|
| parse '{key}: {value}'
|
||||||
|
| str trim
|
||||||
|
| get value
|
||||||
|
| echo {
|
||||||
|
x: $in.1
|
||||||
|
y: $in.2
|
||||||
|
w: $in.5
|
||||||
|
h: $in.6
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
flameshot gui --region $"($reg.w)x($reg.h)+($reg.x)+($reg.y)" -c -p ~/Pictures/screenshots
|
||||||
|
}
|
19
other/scripts/dispatcher.nu
Executable file
19
other/scripts/dispatcher.nu
Executable file
|
@ -0,0 +1,19 @@
|
||||||
|
def main [
|
||||||
|
interface: string
|
||||||
|
type: string
|
||||||
|
] {
|
||||||
|
$env.PATH = ($env.PATH | split row (char esep) | append '/run/current-system/sw/bin');
|
||||||
|
|
||||||
|
let currentnet = (
|
||||||
|
nmcli -m tabular connection show --active
|
||||||
|
| detect columns
|
||||||
|
| first
|
||||||
|
| get name
|
||||||
|
);
|
||||||
|
|
||||||
|
systemd-cat echo $"($currentnet) \(($interface)): ($type)";
|
||||||
|
|
||||||
|
if $interface == 'wlp2s0' {
|
||||||
|
^$"/etc/networkhooks/($currentnet).nu" $interface $type
|
||||||
|
}
|
||||||
|
}
|
40
other/scripts/networkhooks/WIFI@DB.nu
Executable file
40
other/scripts/networkhooks/WIFI@DB.nu
Executable file
|
@ -0,0 +1,40 @@
|
||||||
|
def main [
|
||||||
|
interface: string
|
||||||
|
type: string
|
||||||
|
] {
|
||||||
|
if not ($type == 'up') {
|
||||||
|
exit
|
||||||
|
};
|
||||||
|
|
||||||
|
mullvad disconnect;
|
||||||
|
let page = http get 'http://172.0.0.1/';
|
||||||
|
|
||||||
|
let hotspot_ip = $page | htmlq 'input[name=uamip]' -a 'value';
|
||||||
|
let hotspot_port = $page | htmlq 'input[name=uamport]' -a 'value';
|
||||||
|
|
||||||
|
let pl_data = $page
|
||||||
|
| htmlq input -a name -r input[name=button]
|
||||||
|
| lines
|
||||||
|
| wrap name
|
||||||
|
| merge (
|
||||||
|
$page
|
||||||
|
| htmlq input -a value
|
||||||
|
| lines
|
||||||
|
| wrap value
|
||||||
|
)
|
||||||
|
| drop 1;
|
||||||
|
|
||||||
|
let payload = $pl_data
|
||||||
|
| each {|kv| [
|
||||||
|
($kv.name | url encode --all)
|
||||||
|
($kv.value | url encode --all) ]
|
||||||
|
| str join '='
|
||||||
|
} | str join '&';
|
||||||
|
|
||||||
|
let res = curl --insecure --resolve $"www.hotsplots.de:($hotspot_port):($hotspot_ip)" -H 'Content-Type: application/x-www-form-urlencoded' "https://www.hotsplots.de/auth/login.php" --data-raw $"($payload)" ;
|
||||||
|
|
||||||
|
let url = $res | htmlq 'meta[http-equiv=refresh]' -a 'content' | parse '0;url={url}';
|
||||||
|
|
||||||
|
http get $url.url.0;
|
||||||
|
mullvad connect;
|
||||||
|
}
|
22
other/scripts/networkhooks/WIFIonICE.nu
Normal file
22
other/scripts/networkhooks/WIFIonICE.nu
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
#! /usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p curl htmlq
|
||||||
|
|
||||||
|
# echo "Fetching cookie and CSRF token..."
|
||||||
|
# form=$(curl --silent --location --junk-session-cookies --cookie-jar /tmp/wifionice "https://login.wifionice.de/en/" --resolve login.wifionice.de:443:10.101.64.10 -i | htmlq "input")
|
||||||
|
|
||||||
|
# keys=$(htmlq "input" --attribute "name" <<< "$form")
|
||||||
|
# values=$(htmlq "input" --attribute "value" <<< "$form")
|
||||||
|
# payload=$(paste --delimiters="=" <(echo "$keys") <(echo "$values") | tr "\n" "&")
|
||||||
|
|
||||||
|
# echo "Payload: \"$payload\""
|
||||||
|
# echo "POSTing payload..."
|
||||||
|
|
||||||
|
# curl --cookie /tmp/wifionice "https://login.wifionice.de/en/" --resolve login.wifionice.de:443:10.101.64.10 -d "$payload"
|
||||||
|
|
||||||
|
def main [
|
||||||
|
interface: string
|
||||||
|
type: string
|
||||||
|
] {
|
||||||
|
let form = curl --silent --location --junk-session-cookies --cookie-jar /tmp/wifionice 'https://login.wifionice.de/en/' --resolve 'login.wifionice.de:443:10.101.64.10' -i | htmlq 'input';
|
||||||
|
# TODO
|
||||||
|
}
|
41
other/scripts/networkhooks/ccchh.nu
Normal file
41
other/scripts/networkhooks/ccchh.nu
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
const wave_timeout = 15min;
|
||||||
|
|
||||||
|
def main [
|
||||||
|
interface: string
|
||||||
|
type: string
|
||||||
|
] {
|
||||||
|
if not ('/var/lib/ccchh-winken/last' | path exists) {
|
||||||
|
mkdir '/var/lib/ccchh-winken';
|
||||||
|
0 | into datetime | save '/var/lib/ccchh-winken/last' -f;
|
||||||
|
}
|
||||||
|
|
||||||
|
let $last_waved = open '/var/lib/ccchh-winken/last' --raw | into datetime;
|
||||||
|
|
||||||
|
if ((date now) - $last_waved) > $wave_timeout {
|
||||||
|
if $type == "up" {
|
||||||
|
mullvad disconnect;
|
||||||
|
curl mqtt://mqtt.z9/winkekatze/katz9/eye/set -d (rand-color);
|
||||||
|
curl mqtt://mqtt.z9/winkekatze/Viktoria/eye/set -d (rand-color);
|
||||||
|
curl mqtt://mqtt.z9/winkekatze/allcats -d 'wink';
|
||||||
|
mullvad connect;
|
||||||
|
|
||||||
|
date now | save '/var/lib/ccchh-winken/last' -f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def rand-color [] {
|
||||||
|
const colors = [
|
||||||
|
"blue"
|
||||||
|
"cyan"
|
||||||
|
"green"
|
||||||
|
"pink"
|
||||||
|
"red"
|
||||||
|
"white"
|
||||||
|
"yellow"
|
||||||
|
];
|
||||||
|
|
||||||
|
$colors | get (random integer 0..(($colors | length) - 1))
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue