.dotfiles/dot_config/flake/machines/wash/home.nix
Tyler Mayoff 7ccdf27209 niri (#39)
Reviewed-on: https://codeberg.org/tmayoff/.dotfiles/pulls/39
Co-authored-by: Tyler Mayoff <tyler@tylermayoff.com>
Co-committed-by: Tyler Mayoff <tyler@tylermayoff.com>
2025-08-31 20:06:20 +02:00

26 lines
369 B
Nix

{pkgs, ...}: {
imports = [
../../home/common.nix
../../home/darkman.nix
../../home/home-backup.nix
../../home/gui.nix
../../home/gnome.nix
../../home/niri.nix
../../home/helide
];
home = {
username = "tyler";
homeDirectory = "/home/tyler";
packages = with pkgs; [
nom
];
stateVersion = "23.11";
};
}