Testing
This commit is contained in:
parent
56cce3f52e
commit
c5834898fa
3 changed files with 12 additions and 18 deletions
|
@ -969,7 +969,6 @@
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "Jovian-Experiments",
|
"owner": "Jovian-Experiments",
|
||||||
"ref": "development",
|
|
||||||
"repo": "Jovian-NixOS",
|
"repo": "Jovian-NixOS",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue