Files
Olympus/system/users/nathan/home-manager/programs/default.nix
2026-01-05 20:32:55 -06:00

25 lines
441 B
Nix

{ config, lib, pkgs, inputs, ... }: {
imports = [
./git
./nh
./hyprland
./hyprpanel
./terminal
./rofi
./pywal
./hyprlock
./calcurse
./firefox
];
config = {
home.packages = lib.mkIf (!config.homeconfig.wal.enable) [
inputs.nixvim.packages.${pkgs.system}.default
];
home.sessionVariables.EDITOR = "nvim";
};
}