diff --git a/outputs/homeConfigurations/default.nix b/outputs/homeConfigurations/default.nix index de7154b..0119318 100644 --- a/outputs/homeConfigurations/default.nix +++ b/outputs/homeConfigurations/default.nix @@ -19,15 +19,9 @@ in { keyboard.variant = "dvorak"; packages = with pkgs; [ - alacritty # fast terminal - firefox # the browser with the fox - # social jitsi-meet-electron # jitsi as a stand-alone app discord # talk to other people - #inputs.simplex-chat.packages."x86_64-linux"."exe:simplex-chat" - - # editing # system tools uhk-agent # my keyboard @@ -42,11 +36,24 @@ in { ]; }; + programs = { + alacritty.enable = true; + autorandr.enable = true; + feh.enable = true; + firefox.enable = true; + mpv.enable = true; + rofi.enable = true; + rofi.pass.enable = true; + zathura.enable = true; + }; + services.gpg-agent = { enable = true; enableSshSupport = true; sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ]; }; + + services.autorandr = { enable = true; }; } ]; };