Moved hosts configurations to instances

This commit is contained in:
Filippo Berto 2023-07-19 11:04:29 +01:00
parent 4d706138d6
commit cbe62f3201
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
24 changed files with 344 additions and 344 deletions

27
instances/freya/hm.nix Normal file
View file

@ -0,0 +1,27 @@
{ 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/dunst.nix
../../modules/hm/helix.nix
../../modules/hm/kitty.nix
../../modules/hm/lf.nix
../../modules/hm/spotifyd.nix
../../modules/hm/syncthing.nix
# ../../modules/hm/xidlehook.nix
];
home.stateVersion = "22.11";
}