rework home-manager file structure; add simple hyprland conf

This commit is contained in:
insects 2024-08-09 13:13:23 +02:00
parent c40c333078
commit b688a738d0
15 changed files with 144 additions and 100 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }: {
imports = [
./mise.nix
];
home.packages = with pkgs; [
# some base packages for development, without which nothing would really work
gcc
gnumake
unzip
];
}

View file

@ -0,0 +1,15 @@
{ config, pkgs, lib, ... }: {
home.packages = with pkgs; [
python3 # needed for installing node.js
];
programs.mise = {
enable = true;
enableFishIntegration = true;
globalConfig = {
tools = {
node = "lts";
};
};
};
}