Compare commits

..

No commits in common. "e0a06e39cd8d595731cae6d9a9f25f2dc0bb1bff" and "686dbaeff7366af70031ab9615d7d29f90d6ab2c" have entirely different histories.

8 changed files with 13 additions and 40 deletions

View File

@ -8,9 +8,9 @@
inputs.sops-nix.nixosModules.sops
./system/hardware-configuration.nix
./services
../../modules/opentablet.nix
../../modules/sops.nix
../../modules/system.nix
../../modules/sops.nix
../../modules/opentablet.nix
../../programs/flatpak.nix
../../programs/hyprland.nix
../../programs/steam.nix

View File

@ -5,7 +5,6 @@
./btop.nix
./direnv.nix
./eza.nix
./gpg.nix
./mopidy.nix
./nh.nix
./nix-index.nix

View File

@ -3,8 +3,7 @@
config,
lib,
...
}:
with lib; let
}: with lib; let
emacsDefaultPackage = with pkgs; ((emacsPackagesFor emacsNativeComp).emacsWithPackages (
epkgs: [
epkgs.vterm

View File

@ -1,12 +0,0 @@
{pkgs, ...}:{
programs.gpg = {
enable = true;
mutableKeys = true;
mutableTrust = true;
};
services.gpg-agent = {
enable = true;
enableSshSupport = true;
pinentry.package = pkgs.pinentry-emacs;
};
}

View File

@ -70,15 +70,8 @@ in {
border_size = 2;
"col.active_border" = "rgb(81a1c1) rgb(a3be8c) 45deg";
"col.inactive_border" = "rgb(4c566a)";
layout = "master";
layout = "dwindle";
};
master = {
orientation = "center";
new_status = "inherit";
};
workspace = [
"2, layoutopt:orientation:bottom"
];
decoration = {
rounding = 5;
# blur = {

View File

@ -1,7 +1,6 @@
{
programs.kitty = {
enable = true;
themeFile = "Nord";
settings = {
enable_audio_bell = true;
enabled_layouts = "fat,fat:mirrored=true,tall,tall:mirrored=true";

View File

@ -1,4 +1,5 @@
{inputs, ...}: {
{ inputs, ... }:
{
imports = [
inputs.nix-index-database.hmModules.nix-index
];

View File

@ -1,15 +1,4 @@
{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;
};
{config, ...}: {
accounts.email = {
maildirBasePath = "Mail";
accounts."lucien@phundrak.com" = {
@ -23,7 +12,12 @@ in {
];
passwordCommand = "cat ${config.sops.secrets.emailPassword.path}";
signature = {
text = signature;
text = ''
Lucien Phundrak Cartier-Tilet
https://phundrak.com (Français)
https://phundrak.com/en (English)
Sent from GNU/Emacs
'';
showSignature = "append";
};
userName = "lucien@phundrak.com";