{ pkgs, lib, device, config, inputs, ... }: { imports = [ ./ryu.nix ./hardware ./services ./programs ./containers ./apps ./vms ./games ../../modules/nixos/substituters.nix ]; security.tpm2 = { enable = true; pkcs11.enable = true; tctiEnvironment.enable = true; }; systemd.services.NetworkManager-wait-online.enable = lib.mkForce false; # systemd.tmpfiles.rules = [ # "L+ /etc/gdm/.config/monitors.xml - - - - ${./monitors.xml}" # ]; security = { sudo.wheelNeedsPassword = false; polkit.enable = true; rtkit.enable = true; }; nix = { settings = { max-jobs = 1; cores = 24; auto-optimise-store = true; extra-experimental-features = "nix-command flakes auto-allocate-uids"; trusted-users = [device.user]; extra-sandbox-paths = [config.programs.ccache.cacheDir]; download-buffer-size = 524288000; }; extraOptions = '' build-users-group = nixbld extra-nix-path = nixpkgs=flake:nixpkgs builders-use-substitutes = true ''; gc = { automatic = true; dates = "daily"; options = "--delete-older-than 7d"; }; package = pkgs.nixVersions.latest; # deploy-rs doesn't work with nix >= 2.33 buildMachines = [ ../../builders/tako.nix ../../builders/shiro.nix # ../../builders/tsuba.nix ]; distributedBuilds = true; }; users.users.${device.user} = { uid = device.uid; isNormalUser = true; extraGroups = ["wheel" "audio" "i2c" "media" "video" "tss" "plugdev" "input"]; openssh.authorizedKeys.keyFiles = [ ../../secrets/id_ed25519.pub ../../secrets/id_ios.pub ]; }; users.groups.i2c = {}; users.users.media = { isSystemUser = true; extraGroups = ["audio" "video"]; group = "media"; }; users.groups.media = {}; users.groups.${device.user} = { gid = device.gid; members = [device.user]; }; services = { devmon.enable = true; gvfs.enable = true; udisks2.enable = true; gnome = { gnome-keyring.enable = true; gnome-settings-daemon.enable = true; }; xserver = { # Configure keymap in X11 xkb = { layout = "us"; variant = ""; }; }; greetd = { enable = true; settings = { default_session = { command = "${pkgs.tuigreet}/bin/tuigreet --time --remember --remember-session --asterisks --cmd 'uwsm start -- hyprland.desktop'"; user = "greeter"; }; }; }; # desktopManager.gnome.enable = true; }; boot = { lanzaboote = { enable = true; pkiBundle = "/var/lib/sbctl"; }; plymouth = { enable = true; }; # Bootloader. loader.systemd-boot.enable = pkgs.lib.mkForce false; loader.efi.canTouchEfiVariables = true; # bootspec.enable = true; }; systemd.services.greetd.serviceConfig = { Type = "idle"; StandardInput = "tty"; StandardOutput = "tty"; StandardError = "journal"; TTYReset = true; TTYVHangup = true; TTYVTDisallocate = true; }; # services.wireplumber.configPackages = with pkgs; [ bluez ]; environment.etc."xdg/monitors.xml".source = ./monitors.xml; # environment.etc = { # "wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = '' # bluez_monitor.properties = { # ["bluez5.enable-sbc-xq"] = true, # ["bluez5.enable-msbc"] = true, # ["bluez5.enable-hw-volume"] = true, # ["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]" # } # ''; # }; hardware = { keyboard.qmk.enable = true; # openrazer.enable = true; bluetooth = { enable = true; powerOnBoot = true; settings = { General = { Name = "Ryu"; Enable = "Source,Sink,Media,Socket"; ControllerMode = "dual"; FactConnectable = true; Experimental = true; }; }; }; }; boot.extraModprobeConfig = '' # Keep Bluetooth coexistence disabled for better BT audio stability options iwlwifi bt_coex_active=0 # Enable software crypto (helps BT coexistence sometimes) options iwlwifi swcrypto=1 # Disable power saving on Wi-Fi module to reduce radio state changes that might disrupt BT options iwlwifi power_save=0 # Disable Unscheduled Automatic Power Save Delivery (U-APSD) to improve BT audio stability options iwlwifi uapsd_disable=1 # Disable D0i3 power state to avoid problematic power transitions options iwlwifi d0i3_disable=1 # Set power scheme for performance (iwlmvm) options iwlmvm power_scheme=1 ''; networking = { interfaces.eno1.wakeOnLan = { policy = ["magic"]; enable = true; }; hostName = "ryu"; # Define your hostname. # nameservers = ["1.1.1.1" "8.8.8.8"]; # nameservers = ["1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one"]; # Configure network proxy if necessary # proxy.default = "http://user:password@proxy:port/"; # proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # useDHCP = true; hostId = "1349f9f0"; # Enable networking networkmanager.enable = true; nftables = { # Open ports in the firewall. # firewall.allowedTCPPorts = [ ... ]; # firewall.allowedUDPPorts = [ ... ]; # firewall.enable = false; enable = true; flushRuleset = true; # Marks Tailscale traffic with Mullvad's whitelist marks # (ct mark 0x00000f41 / meta mark 0x6d6f6c65 = "mole") so it bypasses # Mullvad's killswitch and tunnel. # Source: https://github.com/r3nor/mullvad-tailscale tables = { "mullvad_tailscale" = { enable = true; family = "inet"; content = '' chain excludeOutgoing { # mangle priority (-150) runs before mullvad's filter chain (0), # so the ct mark is set before mullvad's drop policy applies. type route hook output priority mangle; policy accept; ip daddr 100.64.0.0/10 ct mark set 0x00000f41 meta mark set 0x6d6f6c65; ip daddr 192.168.0.0/16 ct mark set 0x00000f41 meta mark set 0x6d6f6c65; ip6 daddr fd7a:115c:a1e0::/48 ct mark set 0x00000f41 meta mark set 0x6d6f6c65; } chain allowIncoming { type filter hook input priority -100; policy accept; iifname "tailscale0" ct mark set 0x00000f41 meta mark set 0x6d6f6c65; } chain excludeDns { type filter hook output priority -10; policy accept; ip daddr 100.100.100.100 udp dport 53 ct mark set 0x00000f41 meta mark set 0x6d6f6c65; ip daddr 100.100.100.100 tcp dport 53 ct mark set 0x00000f41 meta mark set 0x6d6f6c65; } ''; }; }; }; firewall = { enable = true; trustedInterfaces = [ "tailscale0" ]; allowedUDPPorts = [ 9 # Wake on LAN 4950 # Warframe 4955 # Warframe ]; allowedTCPPorts = [ 3113 # Hyprmonitors 11345 # lmstudio 8000 # vllm ]; allowedTCPPortRanges = [ { from = 1714; to = 1764; } ]; allowedUDPPortRanges = [ { from = 1714; to = 1764; } ]; }; }; # Set your time zone. time.timeZone = "Asia/Kolkata"; i18n = { supportedLocales = ["en_US.UTF-8/UTF-8"]; # Select internationalisation properties. defaultLocale = "en_US.UTF-8"; extraLocaleSettings = { LC_ALL = "en_US.UTF-8"; LC_ADDRESS = "en_US.UTF-8"; LC_IDENTIFICATION = "en_US.UTF-8"; LC_MEASUREMENT = "en_US.UTF-8"; LC_MONETARY = "en_US.UTF-8"; LC_NAME = "en_US.UTF-8"; LC_NUMERIC = "en_US.UTF-8"; LC_PAPER = "en_US.UTF-8"; LC_TELEPHONE = "en_US.UTF-8"; LC_TIME = "en_US.UTF-8"; }; }; # Define a user account. Don't forget to set a password with ‘passwd’. # Allow unfree packages nixpkgs.config.allowUnfree = true; nixpkgs.config.cudaSupport = true; fonts.fontconfig.enable = true; fonts.fontDir.enable = true; environment = { sessionVariables = { WLR_NO_HARDWARE_CURSORS = "1"; NIXOS_OZONE_WL = "1"; }; # etc # gnome.excludePackages = with pkgs; [ # atomix # puzzle game # cheese # webcam tool # epiphany # web browser # evince # document viewer # geary # email reader # gedit # text editor # gnome-characters # gnome-music # gnome-photos # gnome-terminal # gnome-tour # hitori # sudoku game # iagno # go game # tali # poker game # totem # video player # ]; }; musnix.enable = true; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "23.11"; }