From 0c3d1948758bdf2fb3c463326bbc70b8509ce547 Mon Sep 17 00:00:00 2001 From: Glen Goodwin Date: Fri, 10 Nov 2023 23:55:02 -0500 Subject: [PATCH] chore: remove unused files --- cog.toml | 17 ---------- hosts/thinkpad/apparmor.nix | 4 --- hosts/thinkpad/default.nix | 1 - modules/editors/helix/config.toml | 15 --------- modules/editors/helix/home.nix | 21 ------------- modules/editors/helix/languages.toml | 0 modules/themes/colors.nix | 47 ---------------------------- 7 files changed, 105 deletions(-) delete mode 100644 cog.toml delete mode 100644 hosts/thinkpad/apparmor.nix delete mode 100644 modules/editors/helix/config.toml delete mode 100644 modules/editors/helix/home.nix delete mode 100644 modules/editors/helix/languages.toml delete mode 100644 modules/themes/colors.nix diff --git a/cog.toml b/cog.toml deleted file mode 100644 index 2a54dfd..0000000 --- a/cog.toml +++ /dev/null @@ -1,17 +0,0 @@ -from_latest_tag = false -ignore_merge_commits = false -branch_whitelist = [] -pre_bump_hooks = [] -post_bump_hooks = [] -pre_package_bump_hooks = [] -post_package_bump_hooks = [] - -[commit_types] - -[changelog] -path = "CHANGELOG.md" -authors = [] - -[bump_profiles] - -[packages] diff --git a/hosts/thinkpad/apparmor.nix b/hosts/thinkpad/apparmor.nix deleted file mode 100644 index 32f2d16..0000000 --- a/hosts/thinkpad/apparmor.nix +++ /dev/null @@ -1,4 +0,0 @@ -{pkgs, ...}: { - security.apparmor.enable = true; - security.apparmor.killUnconfinedConfinables = true; -} diff --git a/hosts/thinkpad/default.nix b/hosts/thinkpad/default.nix index 7b41c1b..dc7fc66 100644 --- a/hosts/thinkpad/default.nix +++ b/hosts/thinkpad/default.nix @@ -16,7 +16,6 @@ ++ [(import ./kernel.nix)] ++ [(import ./auditd.nix)] ++ [(import ./openssh.nix)] - ++ [(import ./apparmor.nix)] ++ [(import ../../modules/programs/thunar.nix)] ++ [(import ../../modules/desktop/hyprland/default.nix)]; # Window Manager diff --git a/modules/editors/helix/config.toml b/modules/editors/helix/config.toml deleted file mode 100644 index 8b6dd0d..0000000 --- a/modules/editors/helix/config.toml +++ /dev/null @@ -1,15 +0,0 @@ -theme = "onedark" - -[editor] -line-number = "relative" -mouse = true -auto-completion = true - -[editor.cursor-shape] -insert = "bar" -normal = "block" -select = "underline" - -[editor.file-picker] -hidden = false - diff --git a/modules/editors/helix/home.nix b/modules/editors/helix/home.nix deleted file mode 100644 index 1dfaf4c..0000000 --- a/modules/editors/helix/home.nix +++ /dev/null @@ -1,21 +0,0 @@ -{pkgs, ...}: { - programs = { - helix = {enable = true;}; - }; - - xdg.configFile = {"helix/config.toml".source = ./config.toml;}; - - home.packages = with pkgs; [ - pyright - nil - taplo - yaml-language-server - terraform-ls - lua-language-server - rust-analyzer - nixfmt - nodePackages_latest.bash-language-server - nodePackages_latest.typescript-language-server - python311Packages.python-lsp-server - ]; -} diff --git a/modules/editors/helix/languages.toml b/modules/editors/helix/languages.toml deleted file mode 100644 index e69de29..0000000 diff --git a/modules/themes/colors.nix b/modules/themes/colors.nix deleted file mode 100644 index 8520abd..0000000 --- a/modules/themes/colors.nix +++ /dev/null @@ -1,47 +0,0 @@ -# -# System themes -# -{ - scheme = { - doom = { - scheme = "Doom One Dark"; - black = "000000"; - red = "ff6c6b"; - orange = "da8548"; - yellow = "ecbe7b"; - green = "95be65"; - teal = "4db5bd"; - blue = "6eaafb"; - dark-blue = "2257a0"; - magenta = "c678dd"; - violet = "a9a1e1"; - cyan = "6cdcf7"; - dark-cyan = "5699af"; - emphasis = "50536b"; - text = "dfdfdf"; - text-alt = "b2b2b2"; - fg = "abb2bf"; - bg = "282c34"; - }; - - dracula = { - scheme = "Dracula"; - base00 = "282936"; #background - base01 = "3a3c4e"; - base02 = "4d4f68"; - base03 = "626483"; - base04 = "62d6e8"; - base05 = "e9e9f4"; #foreground - base06 = "f1f2f8"; - base07 = "f7f7fb"; - base08 = "ea51b2"; - base09 = "b45bcf"; - base0A = "00f769"; - base0B = "ebff87"; - base0C = "a1efe4"; - base0D = "62d6e8"; - base0E = "b45bcf"; - base0F = "00f769"; - }; - }; -}