nixos/home/default.nix

68 lines
904 B
Nix
Raw Normal View History

2021-07-01 05:05:55 +01:00
{ config, pkgs, ... }:
let
albert_autostart = (pkgs.makeAutostartItem {
name = "albert";
package = pkgs.albert;
});
guake_autostart = (pkgs.makeAutostartItem {
name = "guake";
package = pkgs.guake;
});
2021-07-01 05:38:08 +01:00
in
{
imports = [
./zsh.nix
./code.nix
./git.nix
./gnome.nix
./ssh.nix
2021-07-01 05:38:08 +01:00
];
nixpkgs.config.allowUnfree = true;
home = {
stateVersion = "21.05";
sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
packages = with pkgs; [
2021-07-01 05:05:55 +01:00
# essentials
albert
guake
# browsers
firefox
brave
chromium
# reversing
rizin
2021-07-01 03:38:35 +01:00
nmap
2021-07-01 05:05:55 +01:00
slack
signal-desktop
teams
discord
element-desktop
# music
spotify
# misc
bind
# system
gparted
2021-07-01 03:38:35 +01:00
sshfs
2021-07-01 05:05:55 +01:00
# autostart
albert_autostart
guake_autostart
];
};
}