summaryrefslogtreecommitdiff
path: root/profiles/station
diff options
context:
space:
mode:
authorMike Vink <mike@pionative.com>2024-06-19 00:03:54 +0200
committerMike Vink <mike@pionative.com>2024-06-19 00:04:23 +0200
commit8f7474d4f0c274e1a2c0d748b7dd9e22b4fb39d7 (patch)
treeda61edea623d4bc40910d9a9d878d7b0e01087d6 /profiles/station
parent30321da3d82f71850f14296aaa5dd50b5816aa07 (diff)
should probably split xserver stuff
Diffstat (limited to 'profiles/station')
-rw-r--r--profiles/station/codeium.nix58
-rw-r--r--profiles/station/k8s.nix7
-rw-r--r--profiles/station/nonfree.nix2
3 files changed, 1 insertions, 66 deletions
diff --git a/profiles/station/codeium.nix b/profiles/station/codeium.nix
deleted file mode 100644
index f63a9b3..0000000
--- a/profiles/station/codeium.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- inputs,
- config,
- pkgs,
- ...
-}: let
- codeium = with pkgs; stdenv.mkDerivation rec {
- pname = "codeium";
- version = "1.1.39";
-
- ls-sha = "c8fda9657259bb7f3d432c1b558db921db4257aa";
-
- src = fetchurl {
- url = "https://github.com/Exafunction/codeium/releases/download/language-server-v${version}/language_server_linux_x64.gz";
- sha256 = "sha256-LA1VVW4X30a8UD9aDUCTmBKVXM7G0WE7dSsZ73TaaVo=";
- };
-
- nativeBuildInputs = [
- autoPatchelfHook
- ];
-
- sourceRoot = ".";
-
- unpackPhase = ''
- cp $src language_server_linux_x64.gz
- gzip -d language_server_linux_x64.gz
- '';
-
- installPhase = ''
- install -m755 -D language_server_linux_x64 $out
- '';
-
- preFixup = ''
- patchelf \
- --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- $out
- '';
-
- meta = with lib; {
- homepage = "https://www.codeium.com/";
- description = "Codeium language server";
- platforms = platforms.linux;
- };
- };
-in {
- # home.activation = {
- # # links codeium into place
- # codium-symlink = inputs.home-manager.lib.hm.dag.entryAfter ["writeBoundary"] ''
- # CODEIUM_TARGET="${config.home.homeDirectory}/.codeium/bin/c8fda9657259bb7f3d432c1b558db921db4257aa"
- # if [ -L $CODEIUM_TARGET ] && [ -e $CODEIUM_TARGET ]; then
- # $DRY_RUN_CMD echo "codeium linked"
- # else
- # mkdir -p $CODEIUM_TARGET
- # $DRY_RUN_CMD ln -sf ${codeium} "$CODEIUM_TARGET/language_server_linux_x64"
- # fi
- # '';
- # };
-}
diff --git a/profiles/station/k8s.nix b/profiles/station/k8s.nix
deleted file mode 100644
index bc2b8c3..0000000
--- a/profiles/station/k8s.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{ pkgs, ... }: {
- environment.systemPackages = with pkgs; [
- kubernetes-helm
- kubectl
- kind
- ];
-}
diff --git a/profiles/station/nonfree.nix b/profiles/station/nonfree.nix
index b323074..f9d6506 100644
--- a/profiles/station/nonfree.nix
+++ b/profiles/station/nonfree.nix
@@ -23,5 +23,5 @@
dedicatedServer.openFirewall = true;
};
};
- hardware.opengl.driSupport32Bit = true;
+ # hardware.opengl.driSupport32Bit = true;
}