mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
20 lines
277 B
Nix
20 lines
277 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./fonts.nix
|
|
./sway.nix
|
|
./filesystems.nix
|
|
./qt.nix
|
|
./gpg.nix
|
|
./xdg-portals.nix
|
|
./dns.nix
|
|
./nfs.nix
|
|
./mingetty.nix
|
|
./sound.nix
|
|
];
|
|
|
|
services.tumbler.enable = true;
|
|
|
|
deploy.profile.gui = true;
|
|
}
|