chore: milkywell host

This commit is contained in:
Leon Schwarzäugl 2025-07-07 23:37:43 +02:00
parent 2830b98729
commit a8daed1d10
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
13 changed files with 30 additions and 30 deletions

View file

@ -1,37 +0,0 @@
{ self, inputs, outputs, ... }:
{
imports = [
inputs.stylix.homeManagerModules.stylix
inputs.sops-nix.homeManagerModules.sops
inputs.nix-index-database.hmModules.nix-index
"${self}/modules/home"
];
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 = true;
isNixos = false;
wallpaper = self + /files/wallpaper/surfacewp.png;
};
}