1
0
Fork 0
nixos/machines/Lilim/configuration.nix

15 lines
366 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
gitpkgs = import /nixpkgs {};
in {
2019-09-05 15:24:54 +02:00
services.cron.enable = false;
2019-08-23 14:43:45 +02:00
networking.dhcpcd.extraConfig = "noarp";
nixpkgs.config.packageOverrides = pkgs: rec{
SDL2 = pkgs.SDL2.override { udevSupport = true; fcitxSupport = true; };
ffmpeg_4 = gitpkgs.ffmpeg-full // { bin = gitpkgs.ffmpeg-full; };
};
2019-09-29 08:09:26 +02:00
system.stateVersion = "19.09";
2019-02-26 13:44:40 +01:00
}