diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index d73b76d..2e2e622 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -179,11 +179,11 @@ # Some programs need SUID wrappers, can be configured further or are # started in user sessions. - # programs.mtr.enable = true; - # programs.gnupg.agent = { - # enable = true; + programs.mtr.enable = true; + programs.gnupg.agent = { + enable = true; # enableSSHSupport = true; - # }; + }; # List services that you want to enable: diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 08a8107..af96a60 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -12,38 +12,33 @@ # The home.packages option allows you to install Nix packages into your # environment. - home.packages = [ - pkgs.brave - pkgs.brightnessctl - # pkgs.cmake - pkgs.contour - # pkgs.etcher ## Currently Uses Electron-19 -- which is marked EOL - # pkgs.discord - pkgs.emacs-all-the-icons-fonts - pkgs.exfatprogs - pkgs.firefox - # pkgs.flatpak - pkgs.floorp - # pkgs.gcc - pkgs.grimblast - # pkgs.gnumake - pkgs.htop - pkgs.keepassxc - pkgs.libtool - pkgs.libreoffice - pkgs.gnome.nautilus - pkgs.neofetch - pkgs.networkmanagerapplet - pkgs.pamixer - pkgs.pavucontrol - pkgs.picom - pkgs.signal-desktop - # pkgs.spotify - pkgs.swayidle - pkgs.swww - pkgs.thunderbird - pkgs.tree - pkgs.wev + home.packages = with pkgs; [ + brave + brightnessctl + contour + emacs-all-the-icons-fonts + exfatprogs + firefox + floorp + gnome.gnome-keyring + grimblast + htop + keepassxc + libtool + libreoffice + gnome.nautilus + neofetch + networkmanagerapplet + pamixer + pavucontrol + picom + signal-desktop + swayidle + swww + thunderbird + tree + wev + # etcher ## Currently Uses Electron-19 -- which is marked EOL ]; # Home Manager is pretty good at managing dotfiles. The primary way to manage diff --git a/modules/old_configs/nvim/lua/liamm/packer.lua b/modules/old_configs/nvim/lua/liamm/packer.lua index 8b4790d..0c50afb 100644 --- a/modules/old_configs/nvim/lua/liamm/packer.lua +++ b/modules/old_configs/nvim/lua/liamm/packer.lua @@ -50,9 +50,6 @@ return require('packer').startup(function(use) } } - -- screenshot tool - use {'mistricky/codesnap.nvim', build='make build_generator'} - use {"akinsho/toggleterm.nvim", tag = '*', config = function() require("toggleterm").setup() end}