Files
nix/home.nix
2026-02-05 21:55:28 -06:00

38 lines
698 B
Nix

{inputs, config, pkgs, device, ... }:
{
imports = [
./modules/syncthing.nix
] ++ (if device == "server" then [
] else [
./modules/stylix.nix
]);
home = {
username = "bug";
homeDirectory = "/home/bug";
stateVersion = "25.11";
packages = with pkgs; [
] ++ (if device == "server" then [
gh
luajit
nodejs
node2nix
] else []);
file = {};
sessionVariables = {
EDITOR = "micro";
MICRO_TRUECOLOR = 1;
};
};
nixpkgs.config.allowUnfree = true;
programs.home-manager.enable = true;
}