chore: refactor
This commit is contained in:
parent
0f6f431cd4
commit
ae74049bbd
|
@ -25,12 +25,6 @@
|
||||||
user = "forgejo";
|
user = "forgejo";
|
||||||
identityFile = "/home/sajenim/.ssh/jasmine-forgejo_sk";
|
identityFile = "/home/sajenim/.ssh/jasmine-forgejo_sk";
|
||||||
};
|
};
|
||||||
|
|
||||||
"turing" = {
|
|
||||||
hostname = "turing.une.edu.au";
|
|
||||||
user = "jwils254";
|
|
||||||
identityFile = "/home/sajenim/.ssh/jwils254_sk";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
35
home-manager/sajenim/features/university/default.nix
Normal file
35
home-manager/sajenim/features/university/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.packages = with pkgs;
|
||||||
|
[
|
||||||
|
libreoffice
|
||||||
|
obsidian
|
||||||
|
x2goclient
|
||||||
|
zoom-us
|
||||||
|
]
|
||||||
|
++ (with unstable.pkgs; [
|
||||||
|
# Allows access to the ReMarkable Cloud API
|
||||||
|
rmapi
|
||||||
|
# Design and simulate digital logic circuits
|
||||||
|
logisim-evolution
|
||||||
|
])
|
||||||
|
++ [
|
||||||
|
# Extract annotations (text highlights and scribbles)
|
||||||
|
# and convert them to Markdown, PDF, PNG, and SVG
|
||||||
|
inputs.remarks.packages.${pkgs.system}.default
|
||||||
|
];
|
||||||
|
|
||||||
|
# Use our yubikey to login to university servers
|
||||||
|
programs.ssh = {
|
||||||
|
matchBlocks = {
|
||||||
|
"turing" = {
|
||||||
|
hostname = "turing.une.edu.au";
|
||||||
|
user = "jwils254";
|
||||||
|
identityFile = "/home/sajenim/.ssh/jwils254_sk";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,22 +6,21 @@
|
||||||
./features/editors
|
./features/editors
|
||||||
./features/games
|
./features/games
|
||||||
./features/printing
|
./features/printing
|
||||||
|
./features/university
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
# Graphics
|
# Graphics
|
||||||
gimp inkscape krita
|
gimp
|
||||||
# Hardware
|
# Hardware
|
||||||
libratbag piper pulsemixer
|
piper
|
||||||
# Media
|
pulsemixer
|
||||||
mpc-cli ncmpcpp jellyfin-media-player
|
# Multimedia
|
||||||
|
mpc-cli
|
||||||
|
ncmpcpp
|
||||||
# Browsers
|
# Browsers
|
||||||
firefox google-chrome
|
firefox
|
||||||
# Remarkabl
|
|
||||||
unstable.rmapi
|
|
||||||
# University
|
|
||||||
libreoffice obsidian x2goclient zoom-us
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue