.
This commit is contained in:
parent
e4db786b24
commit
5d0dc18d47
3 changed files with 8 additions and 9 deletions
|
@ -132,10 +132,6 @@
|
||||||
|
|
||||||
services.fprintd = {
|
services.fprintd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
tod = {
|
|
||||||
enable = true;
|
|
||||||
driver = pkgs.libfprint-2-tod1-goodix;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# Start the driver at boot
|
# Start the driver at boot
|
||||||
|
@ -144,6 +140,8 @@
|
||||||
serviceConfig.Type = "simple";
|
serviceConfig.Type = "simple";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.fwupd.enable = true;
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
{ config, lib, pkgs, ...}:
|
{ config, lib, pkgs, ...}:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.file.".emacs.d/early-init.el" = {
|
home.file.".config/emacs/early-init.el" = {
|
||||||
enable = true;
|
enable = true;
|
||||||
text = ''
|
text = ''
|
||||||
(setq package-enable-at-startup nil)
|
(setq package-enable-at-startup nil)
|
||||||
(setq package-install-upgrade-built-in t)
|
(setq package-install-upgrade-built-in t)
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
home.file.".emacs.d/init.el" = {
|
home.file.".config/emacs/init.el" = {
|
||||||
enable = true;
|
enable = true;
|
||||||
text = builtins.readFile ./init.el;
|
text = builtins.readFile ./init.el;
|
||||||
};
|
};
|
||||||
home.file.".emacs.d/templates" = {
|
home.file.".config/emacs/templates" = {
|
||||||
enable = true;
|
enable = true;
|
||||||
text = builtins.readFile ./templates;
|
text = builtins.readFile ./templates;
|
||||||
};
|
};
|
||||||
programs.emacs = {
|
programs.emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.emacs29-pgtk;
|
package = pkgs.emacs29-pgtk;
|
||||||
extraConfig = builtins.readFile ./init.el;
|
# extraConfig = builtins.readFile ./init.el;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
3
home.nix
3
home.nix
|
@ -458,7 +458,8 @@ programs.hyprlock = {
|
||||||
# events = [ ];
|
# events = [ ];
|
||||||
# timeouts = [{
|
# timeouts = [{
|
||||||
# timeout = 600;
|
# timeout = 600;
|
||||||
# command = "${pkgs.swaylock-effects}/bin/swaylock";
|
# #command = "${pkgs.swaylock-effects}/bin/swaylock";
|
||||||
|
# command = "hyprlock";
|
||||||
# }];
|
# }];
|
||||||
# };
|
# };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue