Skip to content

Commit f5e55c6

Browse files
committed
fix: allow some necessary unfree packages
1 parent 1e4b06f commit f5e55c6

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

machines/tuvok/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
# support DP-Alt display output. DP-Alt output is required for true HDMI or
1919
# DP output via one of this machine's two USB-C ports and zero HDMI/DP ports.
2020
services.xserver.videoDrivers = [ "displaylink" ];
21+
dotfield.nixpkgs.allowedUnfreePackages = [ "displaylink" ];
2122

2223
system.stateVersion = "23.11"; # Did you read the comment?
2324
}

nixos/profiles/hardware/keyboard/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
hardware.keyboard.keyboardio.enable = true;
1111

12+
dotfield.nixpkgs.allowedUnfreePackages = [ "keymapp" ];
1213
hardware.keyboard.zsa.enable = true;
1314
environment.systemPackages = [
1415
pkgs.keymapp

nixos/profiles/hardware/printers-scanners/epson-wf-3520.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,15 @@
5555
# - utsushi (usb/scsi only)
5656
#
5757
# I have not tested USB scanning but I'm sure it's much more straightforward.
58-
{ pkgs, ... }:
58+
{ lib, pkgs, ... }:
5959
let
6060
ip = "192.168.1.192";
6161
in
6262
{
6363
imports = [ ./common.nix ];
6464

65+
nixpkgs.config.allowlistedLicenses = [ lib.licenses.epson ];
66+
6567
hardware.sane.extraBackends = [
6668
pkgs.epkowa
6769

nixos/profiles/one-password.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ let
33
isGraphical = config.services.xserver.enable;
44
in
55
{
6+
dotfield.nixpkgs.allowedUnfreePackages = [
7+
"1password-cli"
8+
"1password"
9+
];
10+
611
home-manager.sharedModules = lib.singleton (
712
{ pkgs, ... }:
813
{

0 commit comments

Comments
 (0)