nix/config/home.nix
fwastring 72dafab57f Refactored home-manager to system and added hyprland
Added hyprland

Added some wayland configs
2025-09-06 12:43:36 +02:00

40 lines
721 B
Nix

{
inputs,
lib,
config,
pkgs,
myhostname,
...
}:
{
imports = [
../shared/dwm.nix
../shared/tmux.nix
../shared/fish.nix
../shared/git.nix
../shared/kitty.nix
../shared/dunst.nix
../shared/nixpkgs.nix
../shared/firefox.nix
../shared/zathura.nix
../shared/lazygit.nix
../shared/ssh.nix
../shared/aerc.nix
../shared/oh-my-posh.nix
../shared/gtk.nix
../shared/neovim.nix
../shared/k9s.nix
];
programs.home-manager.enable = true;
programs.fish.enable = true;
programs.man.generateCaches = false;
home.username = "fw";
home.homeDirectory = "/home/fw";
home.stateVersion = "25.05"; # Did you read the comment?
systemd.user.startServices = "sd-switch";
}