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