mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
23 lines
420 B
Nix
23 lines
420 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./adb.nix
|
|
./fonts.nix
|
|
./gpg.nix
|
|
./firefox.nix
|
|
./dns.nix
|
|
./nfs.nix
|
|
./nix-doc.nix
|
|
./mpd.nix
|
|
./nixpkgs.nix
|
|
./mingetty.nix
|
|
./sound.nix
|
|
];
|
|
|
|
hardware.opengl.extraPackages = with pkgs; [ libvdpau-va-gl ];
|
|
services.tumbler.enable = true;
|
|
environment.systemPackages = with pkgs; [ ntfs3g exfat-utils ];
|
|
|
|
deploy.profile.gui = true;
|
|
}
|