15 lines
No EOL
449 B
Nix
15 lines
No EOL
449 B
Nix
{ config, pkgs, hostname, ... }: {
|
|
home.stateVersion = "23.05";
|
|
imports = [
|
|
# Host specific Configs:
|
|
# ../../hosts/${hostname}/home-manager/gnome-dconf.nix
|
|
../../hosts/${hostname}/home-manager/hyprland-conf.nix
|
|
../../hosts/${hostname}/home-manager/waybar-conf.nix
|
|
|
|
# Universal Configs:
|
|
../../home-manager/git.nix
|
|
../../home-manager/neovim.nix
|
|
../../home-manager/bash.nix
|
|
../../home-manager/firefox.nix
|
|
];
|
|
} |