mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
43 lines
876 B
Nix
43 lines
876 B
Nix
{ self, inputs, outputs, ... }:
|
|
{
|
|
|
|
imports = [
|
|
inputs.stylix.homeManagerModules.stylix
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
inputs.nix-index-database.homeModules.nix-index
|
|
"${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;
|
|
};
|
|
|
|
}
|