sync vencord

This commit is contained in:
41666 2023-12-15 00:59:40 -05:00
parent 730fdbd2ce
commit 9aa4e34606
5 changed files with 42 additions and 15 deletions

View file

@ -5,6 +5,9 @@
../../features/direnv.nix
../../features/git.nix
] ++ (builtins.attrValues outputs.homeManagerModules);
sops.age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
sops.defaultSopsFile = ../../../secrets/default.yaml;
nixpkgs = {
overlays = [

View file

@ -1,10 +1,11 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
let
inherit (pkgs.stdenv) isDarwin;
homeDirectory = if isDarwin then "/Users/noe" else "/home/noe";
in
{
home = {
inherit homeDirectory;
username = "noe";
homeDirectory = if isDarwin then "/Users/noe" else "/home/noe";
};
}
}