Compare commits

..

3 commits

View file

@ -18,24 +18,10 @@ in {
keyboard.type = "us"; keyboard.type = "us";
keyboard.variant = "dvorak"; keyboard.variant = "dvorak";
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;
};
packages = with pkgs; [ packages = with pkgs; [
# social # social
jitsi-meet-electron # jitsi as a stand-alone app jitsi-meet-electron # jitsi as a stand-alone app
discord # talk to other people discord # talk to other people
#inputs.simplex-chat.packages."x86_64-linux"."exe:simplex-chat"
# editing
# system tools # system tools
uhk-agent # my keyboard uhk-agent # my keyboard
@ -50,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 = { services.gpg-agent = {
enable = true; enable = true;
enableSshSupport = true; enableSshSupport = true;
sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ]; sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ];
}; };
services.autorandr = { enable = true; };
} }
]; ];
}; };