Compare commits
2 commits
822416fa79
...
0f6f431cd4
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f6f431cd4 | |||
| 1787d206c2 |
3 changed files with 9 additions and 11 deletions
|
|
@ -29,6 +29,7 @@
|
|||
"turing" = {
|
||||
hostname = "turing.une.edu.au";
|
||||
user = "jwils254";
|
||||
identityFile = "/home/sajenim/.ssh/jwils254_sk";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -24,20 +24,13 @@
|
|||
shellAliases = {
|
||||
c = "clear";
|
||||
r = "cd ~/.repositories";
|
||||
p = "cd ~/.print";
|
||||
d = "cd ~/.repositories/dotfiles.nix";
|
||||
la = "ls -a";
|
||||
ll = "ls -l";
|
||||
tt = "wezterm cli set-tab-title ";
|
||||
deploy-viridian = "nixos-rebuild switch --flake .#viridian --target-host viridian --use-remote-sudo";
|
||||
mount-backup = "sshfs viridian:/srv/shares/sajenim /home/sajenim/.backup";
|
||||
};
|
||||
|
||||
# An attribute set that adds to named directory hash table
|
||||
dirHashes = {
|
||||
# QMK Keymaps
|
||||
crkbd = "$HOME/.github/qmk_keymaps/keyboards/crkbd/keymaps/sajenim";
|
||||
kchrn = "$HOME/.github/qmk_keymaps/keyboards/keychron/q4/ansi_v2/keymaps/sajenim";
|
||||
mount-turing = "sshfs turing:/home/jwils254 /home/sajenim/.turing";
|
||||
};
|
||||
|
||||
# Install plugins
|
||||
|
|
|
|||
|
|
@ -7,9 +7,13 @@
|
|||
# You can change versions, add patches, set compilation flags, anything really.
|
||||
# https://nixos.wiki/wiki/Overlays
|
||||
modifications = final: prev: {
|
||||
# example = prev.example.overrideAttrs (oldAttrs: rec {
|
||||
# ...
|
||||
# });
|
||||
logisim-evolution = prev.logisim-evolution.overrideAttrs (oldAttrs: {
|
||||
postInstall =
|
||||
(oldAttrs.postInstall or "")
|
||||
+ ''
|
||||
wrapProgram $out/bin/logisim-evolution --set _JAVA_AWT_WM_NONREPARENTING 1
|
||||
'';
|
||||
});
|
||||
};
|
||||
|
||||
# When applied, the unstable nixpkgs set (declared in the flake inputs) will
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue