From 68cb1d2ad6310f76e266f65d0435aad9bcdd3d1c Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Sat, 14 Sep 2024 07:04:10 -0600 Subject: update and silly errors fixed --- modules/home-manager/shell.nix | 1 - 1 file changed, 1 deletion(-) (limited to 'modules') diff --git a/modules/home-manager/shell.nix b/modules/home-manager/shell.nix index 6c6d566..2e48849 100644 --- a/modules/home-manager/shell.nix +++ b/modules/home-manager/shell.nix @@ -28,7 +28,6 @@ in { source ${nushell-scripts}/custom-completions/nix/nix-completions.nu source ${nushell-scripts}/custom-completions/man/man-completions.nu source ${nushell-scripts}/custom-completions/cargo/cargo-completions.nu - source ${nushell-scripts}/custom-completions/make/make-completions.nu source ${nushell-scripts}/custom-completions/git/git-completions.nu use ${nushell-scripts}/themes/nu-themes/catppuccin-mocha.nu $env.config = ($env.config | merge {color_config: (catppuccin-mocha)}) -- cgit v1.2.3 From 4acab58c88276d412ccae4bceaaec967abc1fbda Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Sun, 22 Sep 2024 23:41:23 -0600 Subject: typo --- modules/home-manager/hypridle.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/home-manager/hypridle.nix b/modules/home-manager/hypridle.nix index b8fdb3d..d681961 100644 --- a/modules/home-manager/hypridle.nix +++ b/modules/home-manager/hypridle.nix @@ -36,7 +36,7 @@ } { timeout = 420; - on-timeout = "${brightnessSet} 0% && systemctl suspsend"; + on-timeout = "${brightnessSet} 0% && systemctl suspend"; on-resume = "brightnessctl -r"; } ]; -- cgit v1.2.3 From a0c6e4425524ab790d48a2bcfa40122c61d968de Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Mon, 14 Oct 2024 18:27:25 -0600 Subject: there is no need to give trusted users permission --- modules/users/defin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/users/defin.nix b/modules/users/defin.nix index 0b6b06e..24863d6 100644 --- a/modules/users/defin.nix +++ b/modules/users/defin.nix @@ -30,7 +30,7 @@ }; }; - nix.settings.trusted-users = [ "@builders" ]; + # nix.settings.trusted-users = [ "@builders" ]; security.pam = { sshAgentAuth.enable = true; # services.sudo.sshAgentAuth = true; -- cgit v1.2.3 From f5d7694835358948fe6b3bcd03c56e2e6e7021bd Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Tue, 22 Oct 2024 23:10:54 -0600 Subject: security fix --- modules/nixos/cgit.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'modules') diff --git a/modules/nixos/cgit.nix b/modules/nixos/cgit.nix index a5b4013..c4ef76a 100644 --- a/modules/nixos/cgit.nix +++ b/modules/nixos/cgit.nix @@ -1,6 +1,7 @@ { config, pkgs, ... } : { # This is for hosting on bosco services.cgit = { "git.myrmexia.xyz" = { + user = "cgit"; enable = true; nginx.location = "/"; # nginx.virtualHost = "git.myrmexia.xyz"; -- cgit v1.2.3