Removed insecure package exceptions
This commit is contained in:
parent
9a5bd2177c
commit
07bad003ba
|
@ -32,7 +32,7 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
makeConfig =
|
mkConfig =
|
||||||
machineConfig: userConfig:
|
machineConfig: userConfig:
|
||||||
(nixpkgs.lib.nixosSystem {
|
(nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
@ -46,11 +46,6 @@
|
||||||
nixvim.homeManagerModules.nixvim
|
nixvim.homeManagerModules.nixvim
|
||||||
nur.modules.homeManager.default
|
nur.modules.homeManager.default
|
||||||
{
|
{
|
||||||
# TODO: Remove insecure package exception
|
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
|
||||||
"freeimage-unstable-2021-11-01" # For emulation station
|
|
||||||
"electron-31.7.7" # For feishin
|
|
||||||
];
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
nix-matlab.overlay
|
nix-matlab.overlay
|
||||||
];
|
];
|
||||||
|
@ -62,7 +57,7 @@
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
"20212060" = makeConfig ./machines/laptop.nix {
|
"20212060" = mkConfig ./machines/laptop.nix {
|
||||||
jan = {
|
jan = {
|
||||||
sudo = true;
|
sudo = true;
|
||||||
configuration = ./users/jan.nix;
|
configuration = ./users/jan.nix;
|
||||||
|
|
Loading…
Reference in New Issue