mirror of
https://github.com/blahai/nyx.git
synced 2025-02-24 00:38:50 -05:00
29 lines
510 B
Nix
29 lines
510 B
Nix
{ inputs, config, pkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
../../modules/home-manager/default.nix
|
|
];
|
|
|
|
home.username = "pingu";
|
|
home.homeDirectory = "/home/pingu";
|
|
|
|
home.pointerCursor = {
|
|
gtk.enable = true;
|
|
package = pkgs.bibata-cursors;
|
|
name = "Bibata-Modern-Classic";
|
|
size = 24;
|
|
};
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
home.packages = [
|
|
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
}
|