mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 11:17:17 +00:00
21 lines
414 B
Nix
21 lines
414 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../default.nix
|
|
./services.nix
|
|
./hyprland.nix
|
|
];
|
|
|
|
programs.zsh.shellAliases = {
|
|
nrs = "sudo nixos-rebuild switch --flake ${config.home.homeDirectory}/.config/dotfiles.nix#";
|
|
nbs = "nixos-rebuild build --flake ${config.home.homeDirectory}/.config/dotfiles.nix#";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
];
|
|
|
|
home.homeDirectory = "/home/willem";
|
|
}
|