nixos-config/users/rouven/modules/default.nix

20 lines
240 B
Nix
Raw Normal View History

2022-12-19 15:45:59 +01:00
{ config, pkgs, ... }:
{
2022-12-19 18:01:40 +01:00
imports =
[
2023-01-01 21:30:41 +01:00
./accounts
2022-12-19 18:01:40 +01:00
./alacritty
2023-01-01 21:30:41 +01:00
./fzf
2022-12-19 19:30:32 +01:00
./git
2023-01-06 22:39:08 +01:00
./gpg
2023-01-20 10:46:28 +01:00
./hyprland
2022-12-20 13:25:36 +01:00
./neovim
2023-01-06 10:37:50 +01:00
./ssh
2022-12-20 13:25:36 +01:00
./tmux
./vifm
2023-01-22 23:00:16 +01:00
./theme
2022-12-20 13:25:36 +01:00
./zsh
2022-12-19 19:30:32 +01:00
./packages.nix
2022-12-19 15:45:59 +01:00
];
}