22 lines
598 B
Nix
22 lines
598 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home.username = "afoucaultc";
|
|
home.homeDirectory = "/home/afoucaultc";
|
|
home.stateVersion = "26.05";
|
|
|
|
imports =
|
|
[
|
|
./packages/firefox.nix
|
|
./packages/git.nix
|
|
./packages/hyprland.nix
|
|
./packages/lavi.nix
|
|
./packages/neovim.nix
|
|
./packages/other_apps.nix
|
|
./packages/texlive.nix
|
|
./packages/zathura.nix
|
|
./packages/zen.nix
|
|
./packages/zsh.nix
|
|
# dotfiles links
|
|
./dotfiles_apps.nix
|
|
];
|
|
}
|