mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
31 lines
483 B
Nix
31 lines
483 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../home/stylix.nix
|
|
../../home/common.nix
|
|
|
|
../../home/darkman.nix
|
|
|
|
# ../../home/waybar/mechabar
|
|
# ../../home/sway
|
|
|
|
# ../../home/hyprland
|
|
|
|
../../home/home-backup.nix
|
|
../../home/gui.nix
|
|
|
|
../../home/helide
|
|
];
|
|
|
|
home = {
|
|
username = "tyler";
|
|
homeDirectory = "/home/tyler";
|
|
|
|
packages = with pkgs; [
|
|
ventoy
|
|
nom
|
|
# (config.lib.nixGL.wrap renderdoc)
|
|
];
|
|
|
|
stateVersion = "23.11";
|
|
};
|
|
}
|