Compare commits
5 Commits
686dbaeff7
...
e0a06e39cd
Author | SHA1 | Date | |
---|---|---|---|
e0a06e39cd | |||
8f860b6887 | |||
46e9f8c007 | |||
d0f5dc4fb3 | |||
ae1ae30e67 |
@ -8,9 +8,9 @@
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
./system/hardware-configuration.nix
|
||||
./services
|
||||
../../modules/system.nix
|
||||
../../modules/sops.nix
|
||||
../../modules/opentablet.nix
|
||||
../../modules/sops.nix
|
||||
../../modules/system.nix
|
||||
../../programs/flatpak.nix
|
||||
../../programs/hyprland.nix
|
||||
../../programs/steam.nix
|
||||
|
@ -5,6 +5,7 @@
|
||||
./btop.nix
|
||||
./direnv.nix
|
||||
./eza.nix
|
||||
./gpg.nix
|
||||
./mopidy.nix
|
||||
./nh.nix
|
||||
./nix-index.nix
|
||||
|
@ -3,7 +3,8 @@
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: with lib; let
|
||||
}:
|
||||
with lib; let
|
||||
emacsDefaultPackage = with pkgs; ((emacsPackagesFor emacsNativeComp).emacsWithPackages (
|
||||
epkgs: [
|
||||
epkgs.vterm
|
||||
|
12
users/modules/gpg.nix
Normal file
12
users/modules/gpg.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{pkgs, ...}:{
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
mutableKeys = true;
|
||||
mutableTrust = true;
|
||||
};
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
enableSshSupport = true;
|
||||
pinentry.package = pkgs.pinentry-emacs;
|
||||
};
|
||||
}
|
@ -70,8 +70,15 @@ in {
|
||||
border_size = 2;
|
||||
"col.active_border" = "rgb(81a1c1) rgb(a3be8c) 45deg";
|
||||
"col.inactive_border" = "rgb(4c566a)";
|
||||
layout = "dwindle";
|
||||
layout = "master";
|
||||
};
|
||||
master = {
|
||||
orientation = "center";
|
||||
new_status = "inherit";
|
||||
};
|
||||
workspace = [
|
||||
"2, layoutopt:orientation:bottom"
|
||||
];
|
||||
decoration = {
|
||||
rounding = 5;
|
||||
# blur = {
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
themeFile = "Nord";
|
||||
settings = {
|
||||
enable_audio_bell = true;
|
||||
enabled_layouts = "fat,fat:mirrored=true,tall,tall:mirrored=true";
|
||||
|
@ -1,5 +1,4 @@
|
||||
{ inputs, ... }:
|
||||
{
|
||||
{inputs, ...}: {
|
||||
imports = [
|
||||
inputs.nix-index-database.hmModules.nix-index
|
||||
];
|
||||
|
@ -1,4 +1,15 @@
|
||||
{config, ...}: {
|
||||
{config, ...}: let
|
||||
signature = ''
|
||||
Lucien “Phundrak” Cartier-Tilet
|
||||
https://phundrak.com (Français)
|
||||
https://phundrak.com/en (English)
|
||||
Sent from GNU/Emacs
|
||||
'';
|
||||
in {
|
||||
home.file.".signature" = {
|
||||
target = ".signature";
|
||||
text = signature;
|
||||
};
|
||||
accounts.email = {
|
||||
maildirBasePath = "Mail";
|
||||
accounts."lucien@phundrak.com" = {
|
||||
@ -12,12 +23,7 @@
|
||||
];
|
||||
passwordCommand = "cat ${config.sops.secrets.emailPassword.path}";
|
||||
signature = {
|
||||
text = ''
|
||||
Lucien “Phundrak” Cartier-Tilet
|
||||
https://phundrak.com (Français)
|
||||
https://phundrak.com/en (English)
|
||||
Sent from GNU/Emacs
|
||||
'';
|
||||
text = signature;
|
||||
showSignature = "append";
|
||||
};
|
||||
userName = "lucien@phundrak.com";
|
||||
|
Loading…
x
Reference in New Issue
Block a user