☝ Cursors

Added Hyprcursor with rose-pine-hyprcursor theme.

Moved username into a constant in home.nix.

Installed Discord
This commit is contained in:
2024-12-29 10:56:58 +01:00
parent f60462a770
commit 6d6331f4b4
48 changed files with 24 additions and 5 deletions

View File

@ -3,20 +3,23 @@
inputs,
...
}:
let
username = "martin";
in
{
imports = [
inputs.nixvim.homeManagerModules.nixvim
./nixvim
./rofi
./wlogout
../hyprland/hyprcursor
];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home = {
username = "martin";
homeDirectory = "/home/martin";
username = username;
homeDirectory = "/home/${username}";
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.