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