summary refs log tree commit diff
path: root/modules/software-templates
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-02-08 19:34:44 +0100
committerRory& <root@rory.gay>2025-02-08 19:34:44 +0100
commit7dda362c06c93d53705cfd5ff78e895aeae95e9c (patch)
treeb71a3cb10e624cd756f9289d3453a41aed7aefc5 /modules/software-templates
parentAdd laptop, desktop changes (diff)
downloadRory-Open-Architecture-7dda362c06c93d53705cfd5ff78e895aeae95e9c.tar.xz
Format files
Diffstat (limited to 'modules/software-templates')
-rw-r--r--modules/software-templates/dotnet.client.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/modules/software-templates/dotnet.client.nix b/modules/software-templates/dotnet.client.nix

index 3a959fe..6f1fdd8 100644 --- a/modules/software-templates/dotnet.client.nix +++ b/modules/software-templates/dotnet.client.nix
@@ -1,9 +1,17 @@ -{ config, pkgs, nixpkgs-stable, ... }: +{ + config, + pkgs, + nixpkgs-stable, + ... +}: let # We have to specify config to set allowUnfree, as nixpkgs-stable.legacyPackages doesn't pass through config. # See: https://slab.midna.dev/public/posts/where-does-pkgs-come-from-xw6epo0t - stablePkgs = import nixpkgs-stable { config = config.nixpkgs.config; system = pkgs.stdenv.hostPlatform.system; }; + stablePkgs = import nixpkgs-stable { + config = config.nixpkgs.config; + system = pkgs.stdenv.hostPlatform.system; + }; in { #imports = [ ./dotnet.nix ];