.dotfiles/hosts/home/treehouse/default.nix
Leon Schwarzäugl 783e381fbe
Some checks are pending
Flake check / Check flake (push) Waiting to run
chore: update flake
2025-11-02 12:29:35 +01:00

41 lines
774 B
Nix

{ self, outputs, ... }:
{
imports = [
# inputs.sops-nix.homeManagerModules.sops
"${self}/modules/home"
"${self}/modules/nixos/common/pii.nix"
"${self}/modules/nixos/common/meta.nix"
];
nixpkgs = {
overlays = [ outputs.overlays.default ];
config = {
allowUnfree = true;
};
};
services.xcape = {
enable = true;
mapExpression = {
Control_L = "Escape";
};
};
# programs.zsh.initContent = "
# export GPG_TTY=\"$(tty)\"
# export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
# gpgconf --launch gpg-agent
# ";
swarselsystems = {
isLaptop = false;
isNixos = false;
wallpaper = self + /files/wallpaper/surfacewp.png;
};
swarselprofiles = {
dgxspark = true;
};
}