mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
44 lines
782 B
Nix
44 lines
782 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../home/common.nix
|
|
|
|
../../home/darkman.nix
|
|
|
|
../../modules/home/firefox
|
|
../../modules/home/ghostty.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; [
|
|
godot
|
|
|
|
calibre
|
|
claude-code
|
|
];
|
|
|
|
stateVersion = "23.11";
|
|
};
|
|
|
|
services.udiskie = {
|
|
enable = true;
|
|
settings = {
|
|
# workaround for
|
|
# https://github.com/nix-community/home-manager/issues/632
|
|
program_options = {
|
|
# replace with your favorite file manager
|
|
file_manager = "${pkgs.nemo-with-extensions}/bin/nemo";
|
|
};
|
|
};
|
|
};
|
|
}
|