This commit is contained in:
Daniel Ziltener 2024-07-12 22:48:19 +02:00
parent e4db786b24
commit 5d0dc18d47
Signed by: zilti
GPG key ID: B38976E82C9DAE42
3 changed files with 8 additions and 9 deletions

View file

@ -132,10 +132,6 @@
services.fprintd = {
enable = true;
tod = {
enable = true;
driver = pkgs.libfprint-2-tod1-goodix;
};
};
# Start the driver at boot
@ -144,6 +140,8 @@
serviceConfig.Type = "simple";
};
services.fwupd.enable = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [

View file

@ -1,24 +1,24 @@
{ config, lib, pkgs, ...}:
{
home.file.".emacs.d/early-init.el" = {
home.file.".config/emacs/early-init.el" = {
enable = true;
text = ''
(setq package-enable-at-startup nil)
(setq package-install-upgrade-built-in t)
'';
};
home.file.".emacs.d/init.el" = {
home.file.".config/emacs/init.el" = {
enable = true;
text = builtins.readFile ./init.el;
};
home.file.".emacs.d/templates" = {
home.file.".config/emacs/templates" = {
enable = true;
text = builtins.readFile ./templates;
};
programs.emacs = {
enable = true;
package = pkgs.emacs29-pgtk;
extraConfig = builtins.readFile ./init.el;
# extraConfig = builtins.readFile ./init.el;
};
}

View file

@ -458,7 +458,8 @@ programs.hyprlock = {
# events = [ ];
# timeouts = [{
# timeout = 600;
# command = "${pkgs.swaylock-effects}/bin/swaylock";
# #command = "${pkgs.swaylock-effects}/bin/swaylock";
# command = "hyprlock";
# }];
# };