1
0
Fork 0
mirror of https://git.sr.ht/~azikx/wyswort synced 2024-10-30 11:26:20 +00:00
wyswort/host/misc/pkgs.nix
2024-10-15 22:18:01 +09:00

24 lines
528 B
Nix

{ pkgs, inputs, lib, ... }:
let hpkg = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system};
in {
# OS PACKAGES
nixpkgs = { hostPlatform = lib.mkDefault "x86_64-linux"; };
environment.systemPackages = with pkgs; [
git
helix
hyprland
home-manager
# (callPackage ./torrserver/default.nix { })
];
# PROGRAMS ENABLE
programs = {
fish.enable = true;
hyprland = {
enable = true;
package = hpkg.hyprland;
portalPackage = hpkg.xdg-desktop-portal-hyprland;
};
};
}