summaryrefslogtreecommitdiff
path: root/hosts/common/global/default.nix
blob: 26161fd2a8d4c0831b09c1e85697688ee9fe7399 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ inputs, outputs, ... }:
{
  imports = [
    ./locale.nix
    ./keyboard.nix
  ];

  nix.settings.experimental-features = [ "nix-command" "flakes" ];
  nixpkgs.config.allowUnfree = true;

}