mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 16:16:12 +01:00
38 lines
886 B
Nix
38 lines
886 B
Nix
{ hostname, ... }:
|
|
{
|
|
imports =
|
|
if hostname == "zion" then
|
|
[
|
|
./programs/git.nix
|
|
./programs/btop.nix
|
|
# ./programs/yazi.nix
|
|
# ./programs/foot.nix
|
|
./programs/shell.nix
|
|
# ./programs/helix.nix
|
|
# ./programs/zathura.nix
|
|
./programs/packages.nix
|
|
# ./programs/vscodium.nix
|
|
./programs/vscode.nix
|
|
./programs/kitty.nix
|
|
./programs/fastfetch.nix
|
|
|
|
./system/tofi.nix
|
|
./system/wofi.nix
|
|
./system/dunst.nix
|
|
./system/stylix.nix
|
|
./system/waybar.nix
|
|
./system/wlsunset.nix
|
|
./system/hyprland.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 [ ];
|
|
}
|