69 lines
889 B
Nix
69 lines
889 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
albert_autostart = (pkgs.makeAutostartItem {
|
|
name = "albert";
|
|
package = pkgs.albert;
|
|
});
|
|
guake_autostart = (pkgs.makeAutostartItem {
|
|
name = "guake";
|
|
package = pkgs.guake;
|
|
});
|
|
in {
|
|
imports = [
|
|
./zsh.nix
|
|
./code.nix
|
|
./git.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
home = {
|
|
stateVersion = "21.05";
|
|
sessionVariables = {
|
|
EDITOR = "nvim";
|
|
VISUAL = "nvim";
|
|
};
|
|
|
|
packages = with pkgs; [
|
|
# essentials
|
|
albert
|
|
guake
|
|
|
|
# browsers
|
|
firefox
|
|
brave
|
|
chromium
|
|
|
|
# reversing
|
|
rizin
|
|
|
|
# networking
|
|
nmap
|
|
|
|
# development
|
|
clang
|
|
|
|
# social
|
|
slack
|
|
signal-desktop
|
|
teams
|
|
discord
|
|
element-desktop
|
|
|
|
# music
|
|
spotify
|
|
|
|
# misc
|
|
bind
|
|
|
|
# system
|
|
gparted
|
|
|
|
# autostart
|
|
albert_autostart
|
|
guake_autostart
|
|
];
|
|
};
|
|
}
|