This commit is contained in:
2025-04-20 13:54:34 +03:00
parent 07c7d4ff53
commit e2545d8e3d
7 changed files with 20 additions and 9 deletions
Generated
+4 -4
View File
@@ -6,11 +6,11 @@
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
"locked": { "locked": {
"lastModified": 1745138291, "lastModified": 1745145915,
"narHash": "sha256-FXUYygIg+z35NszMG5lt9lw7BJgkD3ABRX8zBTKkQl4=", "narHash": "sha256-GkVoSkWMT7D7uXmt132rW5t2FSp5b+0ebr/BCGWdH3U=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "bf771732d06cb9405314a1ad2cd7817326b142e7", "rev": "bc0d909e255fe8ca717fe5c9f746f0ad1addf03f",
"revCount": 21, "revCount": 22,
"type": "git", "type": "git",
"url": "file:./azos-core" "url": "file:./azos-core"
}, },
+3 -1
View File
@@ -64,7 +64,9 @@
nixosModules = inputs.azos-core.nixosModules.nixosModules; nixosModules = inputs.azos-core.nixosModules.nixosModules;
# Reusable home-manager modules you might want to export # Reusable home-manager modules you might want to export
# These are usually stuff you would upstream into home-manager # These are usually stuff you would upstream into home-manager
homeManagerModules = inputs.azos-core.nixosModules.homeManagerModules; azos-core.homeManagerModules = inputs.azos-core.nixosModules.homeManagerModules;
homeManagerModules = import ./modules/home-manager;
#OLD CODE #OLD CODE
# homeManagerModules = import ./modules/home-manager; # homeManagerModules = import ./modules/home-manager;
+1
View File
@@ -11,6 +11,7 @@
imports = [ imports = [
outputs.homeManagerModules outputs.homeManagerModules
outputs.azos-core.homeManagerModules
]; ];
nixpkgs = { nixpkgs = {
+1 -2
View File
@@ -1,4 +1,3 @@
{ {
# imports = [./mail.nix ./encryption.nix]; imports = [./mail.nix ./encryption.nix];
imports = [./mail.nix];
} }
+9 -1
View File
@@ -19,8 +19,16 @@ in {
home.packages = with pkgs; [ home.packages = with pkgs; [
yubikey-personalization yubikey-personalization
gnupg pinentry-gtk2
]; ];
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
enableSshSupport = true;
pinentryPackage = pkgs.pinentry-gtk2;
};
home.file.".ssh/config".source = ./ssh-config; home.file.".ssh/config".source = ./ssh-config;
home.file.".ssh/gpg-as-ssh.pub".source = ./gpg-as-ssh.pub; home.file.".ssh/gpg-as-ssh.pub".source = ./gpg-as-ssh.pub;
+1
View File
@@ -91,6 +91,7 @@
vim vim
git git
tmux tmux
killall
]; ];
fonts.enableDefaultPackages = true; fonts.enableDefaultPackages = true;