theyre ass

This commit is contained in:
cln
2026-04-19 17:12:27 +02:00
commit b8170ba73c
537 changed files with 53600 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
{ config, lib, pkgs, ... }:
{
imports = [
./ly
];
services.dbus.enable = true;
# Enable hyprland globally
programs.hyprland.enable = true;
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-hyprland
];
wlr.enable = true;
};
# Auto mounting of USBs
services.udisks2.enable = true;
# Polkit
security.polkit.enable = true;
# Steam
programs.steam = {
enable = true;
remotePlay.openFirewall = false;
dedicatedServer.openFirewall = false;
localNetworkGameTransfers.openFirewall = false;
};
# Allow unfree
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
];
# Mullvad
services.mullvad-vpn.enable = true;
environment.systemPackages = with pkgs; [
nmap
unzip
tor-browser
git
];
# Fonts for everything pretty much
fonts.packages = with pkgs; [
noto-fonts
font-awesome
font-awesome_4
nerd-fonts.jetbrains-mono
adwaita-fonts
];
}