[Nix] Attempts to allow unfree packages

This commit is contained in:
2025-02-11 21:31:24 -08:00
parent 7c77936ae9
commit 77a9c37df7
4 changed files with 25 additions and 7 deletions

View File

@@ -2,7 +2,9 @@
description = "System Configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs = {
url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
@@ -25,7 +27,7 @@
};
};
outputs = { self, nixpkgs, ... }@inputs: {
outputs = { self, nixpkgs, ... }@inputs:
nixosConfigurations = {
drew-desktop = (import ./system/hosts/drew-desktop) {
inherit inputs;