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

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";
};
};
}