<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Sinisterly - Operating Systems]]></title>
		<link>https://sinister.ly/</link>
		<description><![CDATA[Sinisterly - https://sinister.ly]]></description>
		<pubDate>Mon, 17 Aug 2026 12:39:13 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Cats or dogs?]]></title>
			<link>https://sinister.ly/Thread-Cats-or-dogs--217081</link>
			<pubDate>Sun, 02 Feb 2025 04:22:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=282019">5tevos</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Cats-or-dogs--217081</guid>
			<description><![CDATA[Dogs vs cats, animals that listen vs animals that just dgaf]]></description>
			<content:encoded><![CDATA[Dogs vs cats, animals that listen vs animals that just dgaf]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[My journey with NixOS]]></title>
			<link>https://sinister.ly/Thread-My-journey-with-NixOS</link>
			<pubDate>Tue, 28 Jan 2025 04:38:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=79419">Leviathan</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-My-journey-with-NixOS</guid>
			<description><![CDATA[Heyo,<br />
before we talk about NixOS, I should probably talk about my background with linux.<br />
I've been using linux since ~2014, been using Ubuntu, Arch and a tiny bit of Fedora so I'd say I know my way around linux.<br />
<br />
My NixOS journey started around 2 months ago.<br />
Why? Well mostly because I love the idea of having a fully declarative system that I can just nuke whenever I feel like I need to.<br />
I started with watching some videos from Vimjoyer to get the basic grasp of it including flakes and home-manager. Which was not as confusing as people made it out to be. Slowly but surely I started building my own proper system.<br />
Did I run into issues? Yes I did! A few of them actually, starting with steam... I didn't know I had to add<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>    remotePlay.openFirewall = true; 
    dedicatedServer.openFirewall = true;
    localNetworkGameTransfers.openFirewall = true;</code></div></div>to the programs.steam part (see <a href="https://nixos.wiki/wiki/Steam" target="_blank" class="mycode_url">https://nixos.wiki/wiki/Steam</a>)<br />
Afterwards I was trying to get VR working on steam with SteamVR and my HTC Vive (also I'm using an AMD GPU &amp; CPU) which was a WHOLE different issue. I can't pinpoint what actually made it work but my whole steam.nix (using flake + home-manager) is in the spoiler. So if you got struggles using VR with nix, that's for you!<br />
<br />
<details class="advanced-spoiler codeblock"><summary class="advanced-spoiler-title title smallfont"><strong>Spoiler:</strong><span class="advanced-spoiler-toggle button" aria-hidden="true"></span></summary><div class="advanced-spoiler-content"><div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>{ pkgs, ... }:
{
  hardware.steam-hardware.enable = true;
  programs.steam = {
    enable = true;
    remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
    dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
    localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
  };

  # OpenGL and Vulkan configuration
  hardware.graphics.enable = true;
  hardware.graphics.extraPackages = with pkgs; [
    vulkan-loader
    vulkan-tools
  ];

  # Add system packages for VR support
  environment.systemPackages = with pkgs; [
    openvr # Required for SteamVR
    libusb1 # Used for VR devices
    usbutils
    pkgs.libsndfile
    pkgs.xwayland
  ];

  # Udev rules for VR devices
  services.udev.packages = with pkgs; [
    openvr
  ];

  services.udev.extraRules = ''
    # HTC Vive
    SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", ATTR{idProduct}=="2c87", MODE="0666", GROUP="plugdev"
    SUBSYSTEM=="usb", ATTR{idVendor}=="28de", ATTR{idProduct}=="2101", MODE="0666", GROUP="plugdev"
    SUBSYSTEM=="usb", ATTR{idVendor}=="28de", ATTR{idProduct}=="2000", MODE="0666", GROUP="plugdev"
  '';
}</code></div></div></div></details><br />
<br />
After that, I started transfering my waybar, swaync and some other configs into .nix files... which was much much easier than I thought. It's as simple as:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>home.file.".path/to/file".text = '' config here '';</code></div></div>So far the whole setup took me around a week or two, there is probably much more I need to learn but that will be something for the next time.<br />
<br />
Not sure if it will help anyone but I'd gladly help if anyone got any questions!<br />
<br />
//Update<br />
I just recieved my quest 3 yesterday and I'm happy to say that also quest 3 works perfectly fine using ALVR.]]></description>
			<content:encoded><![CDATA[Heyo,<br />
before we talk about NixOS, I should probably talk about my background with linux.<br />
I've been using linux since ~2014, been using Ubuntu, Arch and a tiny bit of Fedora so I'd say I know my way around linux.<br />
<br />
My NixOS journey started around 2 months ago.<br />
Why? Well mostly because I love the idea of having a fully declarative system that I can just nuke whenever I feel like I need to.<br />
I started with watching some videos from Vimjoyer to get the basic grasp of it including flakes and home-manager. Which was not as confusing as people made it out to be. Slowly but surely I started building my own proper system.<br />
Did I run into issues? Yes I did! A few of them actually, starting with steam... I didn't know I had to add<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>    remotePlay.openFirewall = true; 
    dedicatedServer.openFirewall = true;
    localNetworkGameTransfers.openFirewall = true;</code></div></div>to the programs.steam part (see <a href="https://nixos.wiki/wiki/Steam" target="_blank" class="mycode_url">https://nixos.wiki/wiki/Steam</a>)<br />
Afterwards I was trying to get VR working on steam with SteamVR and my HTC Vive (also I'm using an AMD GPU &amp; CPU) which was a WHOLE different issue. I can't pinpoint what actually made it work but my whole steam.nix (using flake + home-manager) is in the spoiler. So if you got struggles using VR with nix, that's for you!<br />
<br />
<details class="advanced-spoiler codeblock"><summary class="advanced-spoiler-title title smallfont"><strong>Spoiler:</strong><span class="advanced-spoiler-toggle button" aria-hidden="true"></span></summary><div class="advanced-spoiler-content"><div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>{ pkgs, ... }:
{
  hardware.steam-hardware.enable = true;
  programs.steam = {
    enable = true;
    remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
    dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
    localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
  };

  # OpenGL and Vulkan configuration
  hardware.graphics.enable = true;
  hardware.graphics.extraPackages = with pkgs; [
    vulkan-loader
    vulkan-tools
  ];

  # Add system packages for VR support
  environment.systemPackages = with pkgs; [
    openvr # Required for SteamVR
    libusb1 # Used for VR devices
    usbutils
    pkgs.libsndfile
    pkgs.xwayland
  ];

  # Udev rules for VR devices
  services.udev.packages = with pkgs; [
    openvr
  ];

  services.udev.extraRules = ''
    # HTC Vive
    SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", ATTR{idProduct}=="2c87", MODE="0666", GROUP="plugdev"
    SUBSYSTEM=="usb", ATTR{idVendor}=="28de", ATTR{idProduct}=="2101", MODE="0666", GROUP="plugdev"
    SUBSYSTEM=="usb", ATTR{idVendor}=="28de", ATTR{idProduct}=="2000", MODE="0666", GROUP="plugdev"
  '';
}</code></div></div></div></details><br />
<br />
After that, I started transfering my waybar, swaync and some other configs into .nix files... which was much much easier than I thought. It's as simple as:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>home.file.".path/to/file".text = '' config here '';</code></div></div>So far the whole setup took me around a week or two, there is probably much more I need to learn but that will be something for the next time.<br />
<br />
Not sure if it will help anyone but I'd gladly help if anyone got any questions!<br />
<br />
//Update<br />
I just recieved my quest 3 yesterday and I'm happy to say that also quest 3 works perfectly fine using ALVR.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[apple , samsung, pixel]]></title>
			<link>https://sinister.ly/Thread-apple-samsung-pixel</link>
			<pubDate>Sun, 26 Jan 2025 17:53:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=281696">hixfin09</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-apple-samsung-pixel</guid>
			<description><![CDATA[what is the best operating system for security ?]]></description>
			<content:encoded><![CDATA[what is the best operating system for security ?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[is it worth dual booting windows and linux?]]></title>
			<link>https://sinister.ly/Thread-is-it-worth-dual-booting-windows-and-linux</link>
			<pubDate>Mon, 20 Jan 2025 03:17:28 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=281499">timmypeachstatistic</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-is-it-worth-dual-booting-windows-and-linux</guid>
			<description><![CDATA[I do alot of coding on windows through wsl(ubuntu) and have basic knowledge of the bash shell and I'm trying to improve my coding knowledge and get more experience, but will it really help to dual boot linux or should i just keep using wsl?]]></description>
			<content:encoded><![CDATA[I do alot of coding on windows through wsl(ubuntu) and have basic knowledge of the bash shell and I'm trying to improve my coding knowledge and get more experience, but will it really help to dual boot linux or should i just keep using wsl?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Kali OS vs Parrot OS]]></title>
			<link>https://sinister.ly/Thread-Kali-OS-vs-Parrot-OS</link>
			<pubDate>Sat, 18 Jan 2025 21:10:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=277462">calmignition</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Kali-OS-vs-Parrot-OS</guid>
			<description><![CDATA[So you have a preference between  Kali OS and  Parrot OS. Is there an another alternative  you like better?]]></description>
			<content:encoded><![CDATA[So you have a preference between  Kali OS and  Parrot OS. Is there an another alternative  you like better?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[linux vs windows 10]]></title>
			<link>https://sinister.ly/Thread-linux-vs-windows-10</link>
			<pubDate>Wed, 15 Jan 2025 15:26:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=281178">averageguywith</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-linux-vs-windows-10</guid>
			<description><![CDATA[which one is more usable in gaming?]]></description>
			<content:encoded><![CDATA[which one is more usable in gaming?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Whats is the best ? Windows or mac]]></title>
			<link>https://sinister.ly/Thread-Whats-is-the-best-Windows-or-mac</link>
			<pubDate>Tue, 14 Jan 2025 11:38:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=281327">Tartak00</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Whats-is-the-best-Windows-or-mac</guid>
			<description><![CDATA[What is the best software for trading? A lot of charts 24/7 thanks!]]></description>
			<content:encoded><![CDATA[What is the best software for trading? A lot of charts 24/7 thanks!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[best laptop for editing]]></title>
			<link>https://sinister.ly/Thread-best-laptop-for-editing</link>
			<pubDate>Wed, 25 Dec 2024 13:26:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=280754">gerefaktor</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-best-laptop-for-editing</guid>
			<description><![CDATA[please reccomandate good laptop]]></description>
			<content:encoded><![CDATA[please reccomandate good laptop]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Which distro? (PC)]]></title>
			<link>https://sinister.ly/Thread-Which-distro-PC</link>
			<pubDate>Thu, 19 Dec 2024 23:42:06 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=280625">altoyd</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Which-distro-PC</guid>
			<description><![CDATA[I cannot stand windows anymore. Maybe it’s my schizo brain but I don’t trust everything I do being on a Microsoft-made product. I need privacy, but also want to be able to game. Which distro would be best for this case?]]></description>
			<content:encoded><![CDATA[I cannot stand windows anymore. Maybe it’s my schizo brain but I don’t trust everything I do being on a Microsoft-made product. I need privacy, but also want to be able to game. Which distro would be best for this case?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Qubes OS]]></title>
			<link>https://sinister.ly/Thread-Qubes-OS</link>
			<pubDate>Thu, 28 Nov 2024 05:07:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=277462">calmignition</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Qubes-OS</guid>
			<description><![CDATA[What event or reason that made you switch to Qubes?]]></description>
			<content:encoded><![CDATA[What event or reason that made you switch to Qubes?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[OS Choice (PC)]]></title>
			<link>https://sinister.ly/Thread-OS-Choice-PC</link>
			<pubDate>Mon, 25 Nov 2024 09:12:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=267477">MatrixMu</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-OS-Choice-PC</guid>
			<description><![CDATA[What operating system is the perfect blend of accessibility and safety?]]></description>
			<content:encoded><![CDATA[What operating system is the perfect blend of accessibility and safety?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Best laptop for hacking?]]></title>
			<link>https://sinister.ly/Thread-Best-laptop-for-hacking</link>
			<pubDate>Thu, 21 Nov 2024 23:41:48 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=279885">Rylxr</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Best-laptop-for-hacking</guid>
			<description><![CDATA[Which laptop should i get to be able to dual boot kali and windows at the same time?]]></description>
			<content:encoded><![CDATA[Which laptop should i get to be able to dual boot kali and windows at the same time?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Linux on Tablet]]></title>
			<link>https://sinister.ly/Thread-Linux-on-Tablet</link>
			<pubDate>Thu, 14 Nov 2024 06:45:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=19063">Pflash</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Linux-on-Tablet</guid>
			<description><![CDATA[Iam using Ubuntu 24.10  arm64  dual boot with ubuntu and android in Mi pad 5 Nabu 128gb . Works pretty well so far. <br />
<br />
Just having some issues with dependencies , like Iam not able to install chrome etc etc . But i recommend you you should try it once if you have Mi pad 5 Nabu.<br />
<br />
Available options to install O.S are Arch linux,Windows,Ubuntu,Debian.<br />
<br />
<img src="https://i.imgur.com/lTCI3QI.jpg" loading="lazy" alt="[Image: lTCI3QI.jpg]" class="mycode_img" /><br />
<br />
<img src="https://i.imgur.com/aLbaGKQ.jpg" loading="lazy" alt="[Image: aLbaGKQ.jpg]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[Iam using Ubuntu 24.10  arm64  dual boot with ubuntu and android in Mi pad 5 Nabu 128gb . Works pretty well so far. <br />
<br />
Just having some issues with dependencies , like Iam not able to install chrome etc etc . But i recommend you you should try it once if you have Mi pad 5 Nabu.<br />
<br />
Available options to install O.S are Arch linux,Windows,Ubuntu,Debian.<br />
<br />
<img src="https://i.imgur.com/lTCI3QI.jpg" loading="lazy" alt="[Image: lTCI3QI.jpg]" class="mycode_img" /><br />
<br />
<img src="https://i.imgur.com/aLbaGKQ.jpg" loading="lazy" alt="[Image: aLbaGKQ.jpg]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Win11 vs Win10 for gaming]]></title>
			<link>https://sinister.ly/Thread-Win11-vs-Win10-for-gaming</link>
			<pubDate>Tue, 12 Nov 2024 17:23:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=193036">JohnTitor</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Win11-vs-Win10-for-gaming</guid>
			<description><![CDATA[Are there any advantages of going from Win10 to Win11 purely for gaming? <br />
I’ve been holding back from upgrading only because I’ve not had any issues or anything I would consider a performance degradation from my current Win10 build.<br />
For context I have an amd 3800x and an rtx 2080.]]></description>
			<content:encoded><![CDATA[Are there any advantages of going from Win10 to Win11 purely for gaming? <br />
I’ve been holding back from upgrading only because I’ve not had any issues or anything I would consider a performance degradation from my current Win10 build.<br />
For context I have an amd 3800x and an rtx 2080.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Macbook is good for games?]]></title>
			<link>https://sinister.ly/Thread-Macbook-is-good-for-games</link>
			<pubDate>Sun, 10 Nov 2024 06:26:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://sinister.ly/member.php?action=profile&uid=245389">scorpioncc</a>]]></dc:creator>
			<guid isPermaLink="false">https://sinister.ly/Thread-Macbook-is-good-for-games</guid>
			<description><![CDATA[Hello, computer apple or any macbook can run games ?]]></description>
			<content:encoded><![CDATA[Hello, computer apple or any macbook can run games ?]]></content:encoded>
		</item>
	</channel>
</rss>