Files
nixos-flake/home.nix
T
2026-01-12 17:55:49 +01:00

25 lines
662 B
Nix

{ config, pkgs, ... }:
{
home.username = "odweta";
home.homeDirectory = "/home/odweta";
home.stateVersion = "25.05";
programs.home-manager.enable = true;
imports = [
./homeManagerModules/bash.nix
./homeManagerModules/fastfetch.nix
./homeManagerModules/git.nix
./homeManagerModules/hyprland.nix
./homeManagerModules/keepass.nix
./homeManagerModules/kitty.nix
./homeManagerModules/minecraft.nix
./homeManagerModules/qbittorrent.nix
./homeManagerModules/syncthing.nix
./homeManagerModules/vim.nix
./homeManagerModules/waybar.nix
./homeManagerModules/xdg.nix
./homeManagerModules/xournalpp.nix
];
}