This commit is contained in:
Aleksandr 2025-02-28 22:25:30 +03:00
parent 476c13d296
commit 1bc03bdb14
4 changed files with 20 additions and 17 deletions

View file

@ -4,7 +4,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# BTW I use it for real. # BTW I use it for real.
emacs emacs29-pgtk
# Spellcheck # Spellcheck
ispell ispell
@ -17,6 +17,7 @@
# Markdown # Markdown
pandoc pandoc
python312Packages.grip
# NixOS Devops # NixOS Devops

View file

@ -1,22 +1,15 @@
{ {
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
services.ivpn.enable = true; networking.nameservers = [
"1.1.1.1"
"8.8.8.8"
];
# services.zapret = { # services.mullvad-vpn.enable = true;
# services.resolved = {
# enable = true; # enable = true;
# params = [ # dnssec = "true";
# "--wf-tcp=443" # domains = [ "~." ];
# "--wf-udp=443,50000-65535" # dnsovertls = "true";
# "--dpi-desync=fake,split"
# "--dpi-desync-repeats=3"
# "--dpi-desync-udplen-increment=12"
# "--dpi-desync-udplen-pattern=0xF00F"
# "--dpi-desync-fake-quic=${./zapret/quic_initial_www_google_com.bin}"
# "--dpi-desync-any-protocol"
# "--dpi-desync-cutoff=d3"
# "--dpi-desync-autottl=2"
# "--dpi-desync-fooling=badseq"
# "--dpi-desync-fake-tls=${./zapret/tls_clienthello_www_google_com.bin}"
# ];
# }; # };
} }

View file

@ -30,6 +30,10 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
obsidian obsidian
sioyek sioyek
cmake
gcc
clang
gnumake
signal-desktop signal-desktop
pavucontrol pavucontrol
vlc vlc
@ -38,6 +42,7 @@
yandex-cloud yandex-cloud
qbittorrent qbittorrent
element-desktop element-desktop
xfce.thunar
]; ];
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [

View file

@ -28,6 +28,8 @@ in
time.timeZone = sys.tz; time.timeZone = sys.tz;
networking.hostName = sys.hostname; networking.hostName = sys.hostname;
services.gvfs.enable = true;
nix.settings = { nix.settings = {
substituters = [ substituters = [
"https://hyprland.cachix.org" "https://hyprland.cachix.org"
@ -44,6 +46,8 @@ in
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ifuse ifuse
libimobiledevice libimobiledevice
usbutils
glib
]; ];
services.usbmuxd.enable = true; services.usbmuxd.enable = true;