From e5f4c465ced1d19a7a85dade4d1a800205c567ad Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 1 Jul 2021 06:05:55 +0200 Subject: [PATCH] beautification --- home/default.nix | 68 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 home/default.nix diff --git a/home/default.nix b/home/default.nix new file mode 100644 index 0000000..a8d5d13 --- /dev/null +++ b/home/default.nix @@ -0,0 +1,68 @@ +{ 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 + ]; +}; +}