Latest Updates

This commit is contained in:
2025-09-08 11:57:13 -04:00
parent 991e3c5bf4
commit 03a4cc572a
6 changed files with 34 additions and 9 deletions

8
flake.lock generated
View File

@@ -182,11 +182,11 @@
"neovim-config": {
"flake": false,
"locked": {
"lastModified": 1757104099,
"narHash": "sha256-WEGbE3KUM/DlHdPRd8RCAGkMyUuDGdhuR98TBapSgYg=",
"lastModified": 1757304493,
"narHash": "sha256-SjqJ1J/wXhWdbw21zrp4+xw6+ybypKL7LF/Zr6jEsSg=",
"ref": "master",
"rev": "4ae2d233c27e26b9f8470c953021fbf834cad943",
"revCount": 8,
"rev": "bbde81753f12c0640cae09b91fb90dd3c3be526a",
"revCount": 14,
"type": "git",
"url": "https://git.th3r00t.net/th3r00t/nvim-config.git"
},

View File

@@ -97,10 +97,14 @@
# wineWowPackages.staging
wineWowPackages.waylandFull
winetricks
logmein-hamachi
openmw
virt-viewer
kitty
galaxy-buds-client
hyprshot
nim
nimlangserver
nimble
];
services.udiskie = {
enable = false;

View File

@@ -5,6 +5,7 @@
[
./shares.nix
./sops.nix
./services.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];

View File

@@ -95,12 +95,12 @@
printing.enable = true;
pulseaudio.enable = false;
libinput.enable = true;
logmein-hamachi.enable = true;
# logmein-hamachi.enable = true;
};
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 21 22 80 443 5900 8080 12121 12122 ];
networking.firewall.allowedUDPPorts = [ 21 22 80 443 5900 8080 12121 12122 ];
networking.firewall.allowedTCPPorts = [ 21 22 80 443 5900 8080 12121 12122 61208 ];
networking.firewall.allowedUDPPorts = [ 21 22 80 443 5900 8080 12121 12122 61208 ];
# networking.firewall.enable = false;
# This value determines the NixOS release from which the default

View File

@@ -78,6 +78,7 @@
$manpages = footclient -T capture -e pytui -m
$sysmon = footclient -T system-monitor -e bashtop
$editor = neovide
$screenshot = hyprshot -f ~/Pictures/Screenshots/%Y-%m-%d-%H%M%S.png
bind = $mainMod SHIFT, M, exec, hyprvirtmon.py
bind = $mainMod SHIFT, Return, exec, $terminal
@@ -98,6 +99,14 @@
bind = $mainMod, Y, fullscreen, 1
bind = $mainMod, T, togglegroup
# Screenshot a window
bind = $mainMod, PRINT, exec, hyprshot -m window
# Screenshot a monitor
# bind = , PRINT, exec, hyprshot -m output
# Screenshot a region
bind = $shiftMod, PRINT, exec, hyprshot -m region
# Move focus with mainMod + arrow keys
bind = $mainMod, left, movefocus, l
bind = $mainMod, right, movefocus, r
@@ -236,7 +245,8 @@
"/etc/nixos/home/Wallpapers/star-wars-movie-shadow-stormtrooper-wallpaper-3440x1440_15.jpg"
];
wallpaper = [
",/etc/nixos/home/Wallpapers/starwars-minimal-battle-wallpaper.jpg"
# ",/etc/nixos/home/Wallpapers/starwars-minimal-battle-wallpaper.jpg"
",/etc/nixos/home/Wallpapers/kylo-ren-dark-wallpaper.jpg"
];
};
};

10
modules/services.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
services = {
glances = {
enable = true;
port = 61208;
extraArgs = "--webserver";
};
};
}