From d6e5d2fcbe12b170cd529522fc7d68587f42e95e Mon Sep 17 00:00:00 2001 From: Ray Andrew Date: Sat, 26 Oct 2024 21:14:53 -0500 Subject: [PATCH] add specific host home file --- src/hosts/default.nix | 2 +- src/hosts/pickwick/home.nix | 54 ------------------------------------- 2 files changed, 1 insertion(+), 55 deletions(-) diff --git a/src/hosts/default.nix b/src/hosts/default.nix index 674f4ed..a29b111 100644 --- a/src/hosts/default.nix +++ b/src/hosts/default.nix @@ -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 ]; }; diff --git a/src/hosts/pickwick/home.nix b/src/hosts/pickwick/home.nix index e2b9171..6d1837c 100644 --- a/src/hosts/pickwick/home.nix +++ b/src/hosts/pickwick/home.nix @@ -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"; }