nyx/hosts/nyx/home.nix

30 lines
510 B
Nix
Raw Normal View History

{ inputs, config, pkgs, lib, ... }:
2024-08-30 20:38:37 +03:00
{
imports = [
../../modules/home-manager/default.nix
2024-08-30 20:38:37 +03:00
];
home.username = "pingu";
home.homeDirectory = "/home/pingu";
2024-09-02 12:05:00 +03:00
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
};
home.stateVersion = "24.05";
2024-08-30 20:38:37 +03:00
home.packages = [
2024-09-02 12:05:00 +03:00
2024-08-30 20:38:37 +03:00
];
home.sessionVariables = {
EDITOR = "nvim";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}