mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
yeye meow
This commit is contained in:
parent
a4804f22a7
commit
8921e96251
|
@ -152,7 +152,7 @@ with builtins;
|
|||
mullvad mullvad-vpn
|
||||
sl lolcat ifuse
|
||||
cava
|
||||
prismlauncher
|
||||
#prismlauncher
|
||||
gitg gnome-builder
|
||||
gpick qdirstat file whois ffmpeg_5 scribus p7zip file nmap cmatrix tree socat libreoffice
|
||||
];
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
flake = false;
|
||||
};
|
||||
mms.url = "github:mkaito/nixos-modded-minecraft-servers";
|
||||
easymacros.url = "git+https://gitlab.com/obsidianical/easymacros.git";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, nixos-hardware, mac-brcm-fw, ... }@inputs: {
|
||||
|
|
|
@ -279,7 +279,7 @@ in with lib; {
|
|||
cursor-click = "pointer";
|
||||
cursor-scroll = "ns-resize";
|
||||
enable-ipc = true;
|
||||
wm-restack = "i3";
|
||||
wm-restack = "i3wm";
|
||||
override-redirect = false;
|
||||
};
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
{ inputs, config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
|
@ -37,6 +37,7 @@
|
|||
# missing: menu-qalc picom-jonaburg
|
||||
environment.systemPackages = with pkgs; [
|
||||
# TODO: clean up.
|
||||
prismlauncher
|
||||
nvtop-amd
|
||||
];
|
||||
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
{ inputs, config, pkgs, ... }:
|
||||
{
|
||||
nix.settings = {
|
||||
trusted-substituters = [
|
||||
"https://t2linux.cachix.org"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"t2linux.cachix.org-1:P733c5Gt1qTcxsm+Bae0renWnT8OLs0u9+yfaK2Bejw="
|
||||
];
|
||||
};
|
||||
imports = [
|
||||
# ./t2.nix
|
||||
# "${builtins.fetchGit { url = "https://github.com/kekrby/nixos-hardware.git"; }}/apple/t2"
|
||||
|
@ -73,12 +81,13 @@
|
|||
# };
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.keyboard.uhk.enable = true;
|
||||
hardware.keyboard.uhk.enable = true;
|
||||
|
||||
|
||||
# missing: menu-qalc picom-jonaburg
|
||||
environment.systemPackages = with pkgs; [
|
||||
# TODO: clean up.
|
||||
miraclecast
|
||||
];
|
||||
|
||||
environment.pathsToLink = [
|
||||
|
@ -145,6 +154,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
services.logind.extraConfig = ''
|
||||
RuntimeDirectorySize=12G
|
||||
'';
|
||||
|
||||
networking = {
|
||||
#nameservers = [
|
||||
#"192.168.8.205"
|
||||
|
|
|
@ -1,12 +1,5 @@
|
|||
mkdir -p $HOME/xmacros
|
||||
|
||||
register=$(ls $HOME/xmacros | rofi -dmenu)
|
||||
count=$(echo "2;5;10;20;50;100" | rofi -dmenu -sep ";" -l 5)
|
||||
|
||||
for i in $(seq $count); do
|
||||
echo $i
|
||||
xmacroplay "$DISPLAY" < $HOME/xmacros/$register
|
||||
done
|
||||
register=$(ls $HOME/xmacros | rofi -dmenu)
|
||||
|
||||
xmacrorec2 > $HOME/xmacros/$register
|
||||
|
|
Loading…
Reference in a new issue