mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
38 lines
766 B
Nix
38 lines
766 B
Nix
{ self, outputs, config, ... }:
|
|
{
|
|
|
|
imports = [
|
|
inputs.stylix.homeManagerModules.stylix
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
inputs.nix-index-database.hmModules.nix-index
|
|
./modules/home/common
|
|
"${self}/modules/home/common/sharedsetup.nix"
|
|
];
|
|
|
|
nixpkgs = {
|
|
overlays = [ outputs.overlays.default ];
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
services.xcape = {
|
|
enable = true;
|
|
mapExpression = {
|
|
Control_L = "Escape";
|
|
};
|
|
};
|
|
|
|
programs.zsh.initExtra = "
|
|
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 + /wallpaper/surfacewp.png;
|
|
};
|
|
|
|
}
|