32 lines
683 B
Nix
32 lines
683 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
#../../modules/home/desktop/hyprland
|
|
../../modules/home/programs/common.nix
|
|
../../modules/home/programs/firefox.nix
|
|
../../modules/home/programs/kitty.nix
|
|
../../modules/home/programs/neovim
|
|
../../modules/home/programs/git.nix
|
|
../../modules/home/programs/ssh.nix
|
|
../../modules/home/theme
|
|
../../modules/home/theme/blueish.nix
|
|
../../modules/home/utils/fonts.nix
|
|
];
|
|
|
|
home = {
|
|
username = "xeovalyte";
|
|
homeDirectory = "/home/xeovalyte";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
# Desktop Applications
|
|
kdenlive
|
|
gthumb
|
|
unstable.arduino-ide
|
|
moonlight-qt
|
|
];
|
|
|
|
home.stateVersion = "23.11";
|
|
}
|