mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
enable security-tools for all desktops
This commit is contained in:
parent
a24f4085ba
commit
43ebe97447
4 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,6 @@
|
||||||
gnome = true;
|
gnome = true;
|
||||||
profile = "desktop";
|
profile = "desktop";
|
||||||
hardware = "physical";
|
hardware = "physical";
|
||||||
security-tools = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.persistence."/persist" = {
|
environment.persistence."/persist" = {
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
gnome = true;
|
gnome = true;
|
||||||
profile = "desktop";
|
profile = "desktop";
|
||||||
hardware = "physical";
|
hardware = "physical";
|
||||||
security-tools = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
profile = "desktop";
|
profile = "desktop";
|
||||||
hardware = "physical";
|
hardware = "physical";
|
||||||
gnome = true;
|
gnome = true;
|
||||||
security-tools = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
|
|
@ -9,7 +9,10 @@ in
|
||||||
programs.ssh.startAgent = true;
|
programs.ssh.startAgent = true;
|
||||||
programs.ssh.agentPKCS11Whitelist = pkcslib;
|
programs.ssh.agentPKCS11Whitelist = pkcslib;
|
||||||
|
|
||||||
sconfig.alacritty.enable = true;
|
sconfig = {
|
||||||
|
alacritty.enable = true;
|
||||||
|
security-tools = true;
|
||||||
|
};
|
||||||
|
|
||||||
fonts.fonts = [
|
fonts.fonts = [
|
||||||
# vscode: "DejaVuSansMono Nerd Font Mono" (size 16)
|
# vscode: "DejaVuSansMono Nerd Font Mono" (size 16)
|
||||||
|
|
Loading…
Reference in a new issue