2026-03-04 21:43:27 +01:00
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
2026-03-08 14:13:57 +01:00
|
|
|
lib,
|
2026-03-04 21:43:27 +01:00
|
|
|
...
|
|
|
|
|
}:
|
2026-03-03 20:15:06 +01:00
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./hyprland.nix
|
|
|
|
|
./programs.nix
|
|
|
|
|
./waybar.nix
|
|
|
|
|
./nixvim/nixvim.nix
|
|
|
|
|
./stylix.nix
|
|
|
|
|
];
|
|
|
|
|
home.username = "lucy";
|
|
|
|
|
home.homeDirectory = "/home/lucy";
|
|
|
|
|
|
|
|
|
|
# This value determines the Home Manager release that your configuration is
|
|
|
|
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
|
|
|
|
# introduces backwards incompatible changes.
|
|
|
|
|
#
|
|
|
|
|
# You should not change this value, even if you update Home Manager. If you do
|
|
|
|
|
# want to update the value, then make sure to first check the Home Manager
|
|
|
|
|
# release notes.
|
2026-03-04 16:48:43 +01:00
|
|
|
home.pointerCursor = {
|
|
|
|
|
gtk.enable = true;
|
|
|
|
|
x11.enable = true;
|
|
|
|
|
package = pkgs.runCommand "teto-cursors" { } ''
|
|
|
|
|
mkdir -p $out/share/icons
|
|
|
|
|
ln -s /home/lucy/.icons/tetoW/ $out/share/icons/
|
|
|
|
|
'';
|
|
|
|
|
name = "tetoW";
|
|
|
|
|
size = 48;
|
|
|
|
|
};
|
2026-03-03 20:15:06 +01:00
|
|
|
|
|
|
|
|
programs.zsh = {
|
|
|
|
|
enable = true;
|
|
|
|
|
enableCompletion = true;
|
|
|
|
|
autosuggestion.enable = true;
|
|
|
|
|
syntaxHighlighting.enable = true;
|
|
|
|
|
shellAliases = {
|
|
|
|
|
nsr = "sudo nixos-rebuild switch";
|
|
|
|
|
ncb = "sudo nix-collect-garbage -d";
|
|
|
|
|
};
|
|
|
|
|
oh-my-zsh = {
|
|
|
|
|
enable = true;
|
|
|
|
|
plugins = [
|
|
|
|
|
"git"
|
|
|
|
|
];
|
|
|
|
|
theme = "gentoo";
|
|
|
|
|
};
|
|
|
|
|
};
|
2026-03-08 14:13:57 +01:00
|
|
|
home.activation = {
|
|
|
|
|
reloadQs = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
|
|
|
|
$DRY_RUN_CMD ${pkgs.quickshell}/bin/qs ipc call colors reload
|
|
|
|
|
'';
|
|
|
|
|
};
|
2026-03-03 20:15:06 +01:00
|
|
|
|
|
|
|
|
home.stateVersion = "24.05"; # Please read the comment before changing.
|
|
|
|
|
home.shell.enableShellIntegration = true;
|
|
|
|
|
home.shellAliases = {
|
2026-03-07 10:29:24 +01:00
|
|
|
nrs = "doas nixos-rebuild switch --flake /home/lucy/nixos/";
|
2026-03-03 20:15:06 +01:00
|
|
|
};
|
|
|
|
|
}
|