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

@ -76,6 +76,8 @@ in
# PDF Preview
poppler
trash-cli
])
++ [
vesktopOverride # discord

View file

@ -0,0 +1,27 @@
{ inputs, ... }:
{
imports = [
./git.nix
./gtk.nix
./shell.nix
./config.nix
# ./packages.nix
./programs.nix
./environment.nix
./virtualization.nix
./hyprland.nix
./swaync.nix
./nvim.nix
./bin.nix
./desktops.nix
./direnv.nix
inputs.hyprland.homeManagerModules.default
];
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
};
}