This commit is contained in:
Filippo Berto 2024-05-30 18:53:19 +02:00
parent ed1a2c021a
commit 6b35dd7c26
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
6 changed files with 514 additions and 12 deletions

25
instances/heimdall/hm.nix Normal file
View file

@ -0,0 +1,25 @@
{ pkgs, ... }: {
home = {
language.base = "it_IT.UTF-8";
keyboard = {
layout = "it";
options = [ "terminate:ctrl_alt_bksp" "compose:rctrl" ];
};
packages = builtins.attrValues {
inherit (pkgs)
cava gallery-dl procps wireguard-tools httpie;
};
};
imports = [
../../modules/hm/__basic.nix
../../modules/hm/cava.nix
../../modules/hm/helix.nix
../../modules/hm/kitty.nix
../../modules/hm/syncthing.nix
];
home.stateVersion = "22.11";
}