add specific host home file

This commit is contained in:
Ray Andrew 2024-10-26 21:14:53 -05:00
parent 6a9b443b6a
commit d6e5d2fcbe
2 changed files with 1 additions and 55 deletions

View file

@ -43,7 +43,7 @@ let
imports = [
inputs.nix-index-database.hmModules.nix-index
inputs.impermanence.nixosModules.home-manager.impermanence
# ./${host}/home.nix
./${host}/home.nix
../home
];
};

View file

@ -1,58 +1,4 @@
{ config, pkgs, inputs, lib, ... }:
{
imports = [
inputs.impermanence.nixosModules.home-manager.impermanence
];
# home.persistence."/persist/home/rayandrew/common" = {
# directories = [
# "Downloads"
# "Music"
# "Pictures"
# "Documents"
# "Videos"
# "Code"
# ".gnupg"
# # ".ssh"
# ".local/share/keyrings"
# ".local/share/direnv"
# ".config/1Password"
# ".zoom"
# ".config/Slack"
# ".config/skypeforlinux"
# ];
# files = [
# ".bash_history"
# ".config/zoomus.conf"
# ];
# allowOther = true;
# };
# home.persistence."/persist/home/rayandrew/dotfiles" = {
# removePrefixDirectory = true;
# allowOther = true;
# directories = [
# "scripts/bin"
# "ssh/.ssh"
# ];
# files = [
# ];
# };
programs.zathura = {
enable = true;
};
# systemd.user.services.keyd-application-mapper = {
# Install.WantedBy = [ "default.target" ];
# Unit = { Description = "keyd-application-mapper"; };
# Service = {
# ExecStart = "${pkgs.keyd}/bin/keyd-application-mapper";
# };
# };
# Wayland, X, etc. support for session vars
home.stateVersion = "24.11";
}