add dn-server

This commit is contained in:
DACHXY 2025-03-15 20:07:06 +08:00
parent a304926231
commit 735228acb6
17 changed files with 485 additions and 2 deletions

View file

@ -22,6 +22,8 @@
programs = {
steam = {
enable = true;
protontricks.enable = true;
gamescopeSession.enable = true;
extest.enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;

View file

@ -8,6 +8,7 @@
environment.systemPackages =
(with pkgs; [
neovim
file
# Binary cache platform
cachix
@ -106,4 +107,3 @@
++ [
inputs.ghostty.packages.${system}.default
];
}

View file

@ -0,0 +1,25 @@
{ ... }:
{
imports = [
./plymouth.nix # Boot splash
./fonts.nix
./hardware.nix
./hyprland.nix
./internationalisation.nix
./misc.nix
./nixsettings.nix
./programs.nix
./security.nix
./sound.nix
./time.nix
./theme.nix
./users.nix
./environment.nix
./virtualization.nix
./display-manager.nix
./gc.nix
./polkit.nix
./lsp.nix
./tmux.nix
];
}