2025-12-05 11:59:27 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
{
|
|
|
|
|
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.
|
|
|
|
|
programs.bash.enable = true;
|
2025-12-08 16:03:46 +01:00
|
|
|
programs.bash.bashrcExtra = ''
|
|
|
|
|
"fastfetch"
|
|
|
|
|
'';
|
|
|
|
|
|
2025-12-05 11:59:27 +01:00
|
|
|
home.stateVersion = "24.05"; # Please read the comment before changing.
|
|
|
|
|
home.shell.enableShellIntegration = true;
|
|
|
|
|
home.shellAliases = {
|
|
|
|
|
nrs = "sudo nixos-rebuild switch --flake /home/lucy/nixos-conf/";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|