dotfiles-mirror/etc/nixos/home.nix

10 lines
410 B
Nix
Raw Normal View History

2025-10-01 06:49:33 +03:30
{ config, pkgs, ... }: {
2025-09-30 15:29:42 +03:30
home.username = "coast";
home.homeDirectory = "/home/coast";
home.stateVersion = "25.05";
2025-10-01 06:49:33 +03:30
home.file.".config/sway/config".source = "/home/coast/.local/src/config/sway/config";
home.file.".config/mako/config".source = "/home/coast/.local/src/config/mako/config";
home.file.".config/kitty/kitty.conf".source = "/home/coast/.local/src/config/kitty/kitty.conf";
2025-09-30 15:29:42 +03:30
}