Files
nix-config/home/home.nix
2024-11-05 09:07:52 +01:00

36 lines
828 B
Nix

{ hostname, ... }:
{
imports =
if hostname == "zion" then
[
./programs/btop.nix
./programs/fastfetch.nix
# ./programs/foot.nix
./programs/git.nix
# ./programs/helix.nix
./programs/kitty.nix
./programs/packages.nix
./programs/shell.nix
./programs/vscodium.nix
# ./programs/yazi.nix
# ./programs/zathura.nix
./system/dunst.nix
./system/hyprland.nix
./system/stylix.nix
./system/waybar.nix
./system/wlsunset.nix
./system/wofi.nix
]
else if hostname == "server" then
[
./programs/git.nix
./programs/btop.nix
./programs/yazi.nix
./programs/shell.nix
./programs/helix.nix
./programs/fastfetch.nix
]
else [ ];
}