This commit is contained in:
albert 2024-04-26 13:17:54 +09:00
parent 56cce3f52e
commit c5834898fa
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
3 changed files with 12 additions and 18 deletions

View file

@ -969,7 +969,6 @@
}, },
"original": { "original": {
"owner": "Jovian-Experiments", "owner": "Jovian-Experiments",
"ref": "development",
"repo": "Jovian-NixOS", "repo": "Jovian-NixOS",
"type": "github" "type": "github"
} }

View file

@ -48,7 +48,7 @@
# Hyprland Flake # Hyprland Flake
hyprland.url = "github:hyprwm/Hyprland"; hyprland.url = "github:hyprwm/Hyprland";
# Steam Deck configs for NixOS # Steam Deck configs for NixOS
jovian.url = "github:Jovian-Experiments/Jovian-NixOS/development"; jovian.url = "github:Jovian-Experiments/Jovian-NixOS";
}; };
outputs = { self, nixpkgs, nixpkgs-wayland, home-manager, lanzaboote, nur, sops-nix, doom-emacs, nixos-generators, deploy-rs, ... } @inputs: outputs = { self, nixpkgs, nixpkgs-wayland, home-manager, lanzaboote, nur, sops-nix, doom-emacs, nixos-generators, deploy-rs, ... } @inputs:
let let

View file

@ -1,6 +1,6 @@
{ inputs, config, lib, username, ... }: { { inputs, config, lib, username, pkgs, ... }: {
imports = [ imports = [
inputs.jovian.nixosModules inputs.jovian.nixosModules.default
./disks.nix ./disks.nix
../../common/modules/boot.nix ../../common/modules/boot.nix
../../common/services/tailscale-autoconnect.nix ../../common/services/tailscale-autoconnect.nix
@ -20,18 +20,13 @@
# Set the networking hostname: # Set the networking hostname:
networking.hostName = "steamdeck"; networking.hostName = "steamdeck";
# jovian = { jovian = {
# decky-loader.enable = true; decky-loader.enable = true;
# steam.enable = true; steam.enable = true;
# steam.autoStart = true; steam.autoStart = true;
# steam.user = username; steam.user = username;
# steamos.useSteamOSConfig = true; steamos.useSteamOSConfig = true;
# devices.steamdeck.enable = true; devices.steamdeck.enable = true;
# hardwarhas.amd.gpu = true; hardwarhas.amd.gpu = true;
# }; };
environment.systemPackages = with inputs.jovaian.pkgs; [
jupiter-dock-updater-bin
steamdeck-firmware
];
} }