51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
# # Adds the 'hello' command to your environment. It prints a friendly
|
|
# # "Hello, world!" when run.
|
|
# pkgs.hello
|
|
localsend
|
|
meld
|
|
melonDS
|
|
nestopia-ue
|
|
obsidian
|
|
remmina
|
|
swww
|
|
vesktop
|
|
vlc
|
|
wireshark
|
|
|
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
|
# # overrides. You can do that directly here, just don't forget the
|
|
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
|
# # fonts?
|
|
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
|
|
|
|
# # You can also create simple shell scripts directly inside your
|
|
# # configuration. For example, this adds a command 'my-hello' to your
|
|
# # environment:
|
|
# (pkgs.writeShellScriptBin "my-hello" ''
|
|
# echo "Hello, ${config.home.username}!"
|
|
# '')
|
|
];
|
|
|
|
programs.kitty = {
|
|
enable = true;
|
|
themeFile = "Earthsong";
|
|
shellIntegration.enableZshIntegration = true;
|
|
};
|
|
|
|
programs.waybar = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.wlogout = {
|
|
enable = true;
|
|
};
|
|
}
|