sync vencord
This commit is contained in:
parent
730fdbd2ce
commit
9aa4e34606
5 changed files with 42 additions and 15 deletions
|
@ -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 = [
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue