All checks were successful
check / check (push) Successful in 35s
- Remove crate extension because is deprecated and cratesx not exist in nixpkgs - Add C/C++ Support for Linux kernel module development - Best errors
26 lines
389 B
Nix
26 lines
389 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../modules/home
|
|
];
|
|
|
|
modules.home = {
|
|
editors.vscode.enable = true;
|
|
|
|
apps = {
|
|
flatpak.enable = true;
|
|
jetbrainsToolbox.enable = true;
|
|
kitty.enable = true;
|
|
minecraft.enable = true;
|
|
};
|
|
|
|
shell = {
|
|
zsh.enable = true;
|
|
atuin.enable = true;
|
|
direnv.enable = true;
|
|
git.enable = true;
|
|
};
|
|
};
|
|
}
|
|
|