This commit is contained in:
atagen 2024-08-28 14:23:28 +10:00
parent 914788cd30
commit 8003d9b2a6
10 changed files with 379 additions and 121 deletions

View file

@ -1,6 +1,17 @@
{pkgs, ...}: {
{pkgs, ...}: let
murex = pkgs.murex.overrideAttrs {
passthru = {
shellPath = "/bin/murex";
};
};
in {
environment.pathsToLink = ["/share/zsh"];
programs.zsh.enable = true;
environment.systemPackages = [
murex
];
# TODO change this when they fix the helix job control issue
# users.defaultUserShell = murex;
users.defaultUserShell = pkgs.zsh;
console = {
font = "Lat2-Terminus16";

View file

@ -20,7 +20,10 @@
];
};
programs.meat.flake = "/home/bolt/.nix";
programs.meat = {
enable = true;
flake = "/home/bolt/.nix";
};
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "usbcore" "sd_mod"];
boot.initrd.kernelModules = [];