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-12 18:43:57 +09:00

26 lines
486 B
Nix

{ config, 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; [
nh git fish
doas micro
zapret
hyprland light
home-manager
];
# PROGRAMS ENABLE
programs = {
fish.enable = true;
hyprland = {
enable = true;
package = hpkg.hyprland;
portalPackage = hpkg.xdg-desktop-portal-hyprland;
};
};
}