Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
appaquet committed Sep 17, 2024
1 parent 9595375 commit 9a949f1
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion home-manager/deskapp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
imports = [
./modules/base.nix
./modules/dev.nix
./modules/work.nix
./modules/work
./modules/vms.nix
./modules/media.nix
./modules/exo.nix
Expand Down
2 changes: 1 addition & 1 deletion home-manager/mbpapp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
imports = [
./modules/base.nix
./modules/dev.nix
./modules/work.nix
./modules/work
./modules/media.nix
];

Expand Down
2 changes: 1 addition & 1 deletion home-manager/modules/dev.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

let
# Set mold as linker
# Disable readonly segment in mold for perf (See https://github.com/flamegraph-rs/flamegraph)
# Disable readonly segment in mold for `perf` (See https://github.com/flamegraph-rs/flamegraph)
cargoConfig = "" +
(if pkgs.stdenv.isLinux then ''
[target.x86_64-unknown-linux-gnu]
Expand Down
3 changes: 2 additions & 1 deletion home-manager/modules/fish.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
${pkgs.any-nix-shell}/bin/any-nix-shell fish --info-right | source
# Term color support + theme
# TODO: test what still makes sense here.. i use starfish now
set -x TERM xterm-256color
set -g theme_display_cmd_duration no
set -g theme_display_date no
Expand All @@ -39,7 +40,7 @@
# Apparently the plugin doesn't do this for us on MacOS for some reason
fzf_configure_bindings
# Some shortcuts (ctrl-alt-c, in iTerm2, rebind alt to Esc+)
# Some shortcuts (ctrl-alt-c, in iTerm2, need to rebind alt to Esc+)
bind \cn 'fzf-nix'
bind \cg 'fzf-ripgrep'
'';
Expand Down
2 changes: 1 addition & 1 deletion home-manager/modules/mise.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let

# should not install python or node via mise on nixos since
# it needs to compile from scratch.
# we're better of using nixpkgs instead
# we're better off using nixpkgs instead
(if cfg.isNixos then ''
disable_tools = ["python", "node"]
'' else "");
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion home-manager/nixapp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
imports = [
./modules/base.nix
./modules/dev.nix
./modules/work.nix
./modules/work
./modules/vms.nix
./modules/media.nix
./modules/exo.nix
Expand Down
1 change: 0 additions & 1 deletion nixos/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@

# Allow running external dynamically binaries
# nix-ld replaces interpreter and automatically link with nix libs
# `nix-alien-ld` can be used to run binaries
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
stdenv.cc.cc
Expand Down

0 comments on commit 9a949f1

Please sign in to comment.