nixos-config/home-manager/all.nix

27 lines
489 B
Nix
Raw Normal View History

2024-06-24 21:53:35 +02:00
{ pkgs, unstable, extra, ... }:
let common = rec {
username = "rachel";
homeDir = "/home/${username}";
};
in {
imports = builtins.map (x: import x { inherit pkgs unstable extra common; }) [
./applications.nix
./fetch.nix
2024-06-25 12:11:51 +02:00
./files.nix
2024-06-24 21:53:35 +02:00
./git.nix
./gpg.nix
./hm-settings.nix
2024-10-16 19:22:16 +02:00
./i3.nix
2024-06-24 21:53:35 +02:00
./launcher.nix
./media.nix
./neovim.nix
2024-10-17 02:29:48 +02:00
./picom.nix
2024-06-25 12:11:51 +02:00
./plasma.nix
2024-06-24 21:53:35 +02:00
./shell.nix
./ssh.nix
./terminal.nix
./tmux.nix
./xdg-dirs.nix
];
}