diff options
author | Jasper Ras <jras@hostnet.nl> | 2024-11-13 22:45:21 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2024-11-13 22:45:21 +0100 |
commit | 4428f370dd343f21b839a1479a5f8ef4e605ebad (patch) | |
tree | 4d462fc2ce0c98688cac857c7a1d3642dd612f3b | |
parent | f1d8afcc156b14ce44dde407bd76661bdc821e03 (diff) |
Remove some stuff from work profile
-rw-r--r-- | home-manager/entrypoints/work.nix | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/home-manager/entrypoints/work.nix b/home-manager/entrypoints/work.nix index 44b2d86..6a08059 100644 --- a/home-manager/entrypoints/work.nix +++ b/home-manager/entrypoints/work.nix @@ -22,7 +22,6 @@ pkgs.nodejs_20 pkgs.obsidian pkgs.apacheHttpd - (pkgs.nerdfonts.override { fonts = [ "CascadiaCode" ]; }) pkgs.moonlight-qt pkgs.brightnessctl pkgs.xflux @@ -33,35 +32,6 @@ fonts.fontconfig.enable = true; targets.genericLinux.enable = true; - # https://github.com/nix-community/home-manager/issues/1439#issuecomment-1440763587 - home.activation = { - linkDesktopApplications = { - after = [ "writeBoundary" "createXdgUserDirectories" ]; - before = [ ]; - data = "/usr/bin/update-desktop-database"; - }; - }; - - programs.vscode.enable = true; - - # Requires https://github.com/guibou/nixGL - programs.alacritty = { - enable = true; - package = (pkgs.alacritty.overrideAttrs (oldAttrs: { - postInstall = oldAttrs.postInstall + '' - mv $out/bin/alacritty $out/bin/_alacritty - touch $out/bin/alacritty - chmod +x $out/bin/alacritty - echo -e "#!/usr/bin/env zsh\nnix run github:nix-community/nixGL#nixGLIntel -- $out/bin/_alacritty" > $out/bin/alacritty - ''; - })); - settings = { - font.normal = { - family = "CaskaydiaCove Nerd Font"; - style = "Regular"; - }; - }; - }; programs.git = { userName = "Jasper Ras"; @@ -93,7 +63,6 @@ eval "$(dircolors)" ''; programs.zsh.shellAliases = { - i3ref = "xdg-open https://i3wm.org/docs/refcard.html"; ssh = "TERM=xterm-256color ssh"; }; @@ -115,10 +84,6 @@ }; home.file = { - i3-config = { - source = ../config/i3; - target = ".config/i3/config"; - }; set-display = { text = '' #!/usr/bin/env bash |