nixos-home-flake/modules/default.nix

18 lines
211 B
Nix
Raw Normal View History

2024-02-21 21:18:36 +01:00
{ inputs, pkgs, config, ... }:
2024-02-21 19:34:28 +01:00
{
2024-02-21 21:18:36 +01:00
home.stateVersion = "23.05";
2024-02-21 19:34:28 +01:00
imports = [
2024-02-21 21:18:36 +01:00
./hyprland
./packages
./dunst
./kitty
./waybar
./zsh
./fuzzel
./gtk
./direnv
./nvim
2024-02-21 19:34:28 +01:00
];
}