53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
inputs:
|
|
with inputs;
|
|
let
|
|
pkgs = import nixpkgs-unstable {
|
|
system = "x86_64-linux";
|
|
config.allowUnfree = true;
|
|
overlays = [ emacs.overlay ];
|
|
};
|
|
in {
|
|
"alex@dregil" = home-manager-unstable.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
modules = [
|
|
../../home/cli.nix
|
|
{
|
|
home = {
|
|
language.base = "en_US@UTF-8";
|
|
|
|
keyboard.type = "us";
|
|
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
|
|
mosh # ssh via udp
|
|
|
|
# gaming support
|
|
lutris
|
|
winePackages.stagingFull
|
|
|
|
# reading
|
|
calibre
|
|
];
|
|
};
|
|
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|