diff options
author | polwex <polwex@sortug.com> | 2025-07-15 09:18:18 +0000 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-07-15 09:18:18 +0000 |
commit | f236704849d20d090723d5bf9061bf845f7ba05d (patch) | |
tree | 32ca957662655c2b6e4fd5fde4ff1e9d7b019da1 /hosts/local/s15/configuration.nix | |
parent | 34fae224e8460419ae8ef0fe32a12e3d362142b8 (diff) | |
parent | 93a42a56aa50d00fd2e521acd8213a0dfc3612c9 (diff) |
Merge branch 's15'
Diffstat (limited to 'hosts/local/s15/configuration.nix')
-rw-r--r-- | hosts/local/s15/configuration.nix | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/hosts/local/s15/configuration.nix b/hosts/local/s15/configuration.nix index a326dd4..20efcb5 100644 --- a/hosts/local/s15/configuration.nix +++ b/hosts/local/s15/configuration.nix @@ -7,17 +7,24 @@ inputs, pkgs, ... -}: let - wrappers = - inputs.wrapper-manager.lib.build - { - inherit pkgs; - modules = [ - ../../../wrappers/aerc - ../../../wrappers/zellij - ]; - }; -in { +}: +# let +# wrappers = +# inputs.wrapper-manager.lib.build +# { +# inherit pkgs; +# modules = [ +# ../../../wrappers/aerc +# ../../../wrappers/zellij +# ]; +# }; +# in +{ + nixpkgs.config = { + allowUnfree = true; + allowUnfreePredicate = _: true; + chromium.enableWideVine = true; + }; wsl.enable = true; wsl.defaultUser = "y"; imports = [ @@ -26,11 +33,12 @@ in { ../../editors.nix ../../pkgs.nix ../../server.nix - ../../gpg.nix + # ../../gpg.nix ]; environment.systemPackages = [ - wrappers + # wrappers pkgs.superhtml + pkgs.broken-sword-25 ]; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions |