feat(aarch64): Add aarch64 kexec tarball #95

Merged
DarkKirb merged 6 commits from kexec-tarball into main 2022-12-13 16:59:16 +00:00
2 changed files with 22 additions and 13 deletions
Showing only changes of commit 327d3e0d3f - Show all commits

View file

@ -1,7 +1,7 @@
desktop: {pkgs, ...}: {
imports = [
(import ../programs/zsh.nix desktop)
../programs/helix
(import ../programs/helix desktop)
../programs/tmux.nix
../programs/ssh.nix
../programs/taskwarrior.nix
@ -33,14 +33,20 @@ desktop: {pkgs, ...}: {
cat = "bat";
less = "bat";
};
packages = with pkgs; [
yubico-piv-tool
ripgrep
jq
gh
htop
sops
] ++ (if desktop then [yubikey-manager] else []);
packages = with pkgs;
[
yubico-piv-tool
ripgrep
jq
gh
htop
sops
]
++ (
if desktop
then [yubikey-manager]
else []
);
};
programs.exa = {

View file

@ -1,11 +1,14 @@
{
desktop: {
system,
pkgs,
...
}: {
imports = [
./languages.nix
];
imports =
if desktop
then [
./languages.nix
]
else [];
home.packages = [
pkgs.wl-clipboard
pkgs.xsel