37 lines
457 B
Nix
Executable File
37 lines
457 B
Nix
Executable File
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hyprland
|
|
./hyprpaper
|
|
./hypridle
|
|
./hyprlock
|
|
./hyprsunset
|
|
./waybar
|
|
./kitty
|
|
./zsh
|
|
./dunst
|
|
./rofi
|
|
./clipboard
|
|
./lf
|
|
./librewolf
|
|
./fzf
|
|
./fastfetch
|
|
./btop
|
|
./cava
|
|
./neovim
|
|
./mullvad
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
nautilus
|
|
tty-clock
|
|
mullvad-browser
|
|
];
|
|
|
|
xdg.userDirs = {
|
|
enable = true;
|
|
createDirectories = true;
|
|
};
|
|
}
|