nix_config/home/platforms/fabian@posixlycorrect/default.nix

40 lines
630 B
Nix
Raw Normal View History

2024-09-08 23:23:22 +02:00
{
flakes,
config,
pkgs,
lib,
...
}: {
imports = [
2024-09-30 19:46:31 +02:00
./apps
2024-09-08 23:23:22 +02:00
./systemd
./gui
./isolation.nix
];
nix.registry = {
"system".to = {
type = "path";
path = "/home/fabian/nix";
};
"nixpkgs".flake = flakes.nixpkgs;
"unstable".flake = flakes.unstable;
};
home = {
stateVersion = "21.11"; # No tocar esto
username = "fabian";
homeDirectory = "/home/fabian";
sessionVariables = {
"EDITOR" = "nvim";
"TERMINAL" = "kitty";
};
keyboard = {
layout = "us";
variant = "altgr-intl";
};
};
programs.home-manager.enable = true;
}