From a7d94a19ea54a857242f7d9b359a9e6428fbfa47 Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 6 May 2025 22:45:59 +0200 Subject: [PATCH] Adds steam deck command to flake --- Justfile | 4 ++++ flake.nix | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 4a48c8d..da41927 100644 --- a/Justfile +++ b/Justfile @@ -30,3 +30,7 @@ mac-re: mac-up: darwin-rebuild switch --recreate-lock-file --flake . && brew upgrade && brew upgrade --cask --greedy + +# dnsc-deck +deck-re: + nix run home-manager/master -- switch flake .#dnsc-deck diff --git a/flake.nix b/flake.nix index 40b323c..865ce73 100644 --- a/flake.nix +++ b/flake.nix @@ -45,7 +45,7 @@ }; homeConfigurations."dnsc-deck" = home-manager.lib.homeManagerConfiguration { - pkgs = nixpkgs.legacyPackages; + pkgs = nixpkgs.legacyPackages.x86_64-linux; specialArgs = {inherit inputs outputs;}; modules = [ ./home/deck.nix ]; };