# Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). { config, pkgs, ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ./../../modules/desktop.nix ./../../modules/secrets.nix ./../../modules/security.nix ./../../modules/unfree.nix ./../../modules/users.nix #./../../modules/wifi.nix ( #let revision = "e74e57a37de55ecfdc62f49fe5a7463b2a52499a"; in let revision = "98a61cf0708885abddebc6938ca7282928981d5e"; in builtins.fetchTarball { url = "https://github.com/Jovian-Experiments/Jovian-NixOS/archive/${revision}.tar.gz"; sha256 = "sha256:0f1c3ilr9rm6jrs3nfhvf8ni0jccfy1810s6a94iywa9416w1k7c"; } + "/modules" ) ]; networking.hostName = "decky"; networking.networkmanager.enable = true; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.initrd.luks.devices."luks-1c04b05d-0ddf-429a-95c3-1f5fdb570207".device = "/dev/disk/by-uuid/1c04b05d-0ddf-429a-95c3-1f5fdb570207"; # Set time zone and internationalisation time.timeZone = "Europe/Berlin"; i18n.defaultLocale = "de_DE.UTF-8"; i18n.extraLocaleSettings = { LC_ADDRESS = "de_DE.UTF-8"; LC_IDENTIFICATION = "de_DE.UTF-8"; LC_MEASUREMENT = "de_DE.UTF-8"; LC_MONETARY = "de_DE.UTF-8"; LC_NAME = "de_DE.UTF-8"; LC_NUMERIC = "de_DE.UTF-8"; LC_PAPER = "de_DE.UTF-8"; LC_TELEPHONE = "de_DE.UTF-8"; LC_TIME = "de_DE.UTF-8"; }; # Configure console keymap console.keyMap = "de"; # List packages installed in system profile. # To search, run: $ nix search wget environment.systemPackages = with pkgs; [ wget curl git vim ]; jovian = { devices.steamdeck = { enable = true; autoUpdate = false; enableGyroDsuService = true; }; steam = { enable = true; autoStart = true; user = "wieerwill"; desktopSession = "sway"; updater.splash = "jovian"; }; decky-loader = { enable = false; #extraPackages = [pkgs.curl pkgs.unzip]; #user = "wieerwill"; }; }; # Enable sound with pipewire. services.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { enable = true; alsa.enable = true; alsa.support32Bit = true; pulse.enable = true; # If you want to use JACK applications, uncomment this #jack.enable = true; }; hardware.bluetooth = { enable = true; powerOnBoot = true; settings = { General = { Experimental = 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 = "25.05"; # Did you read the comment? }