26 lines
473 B
Nix
26 lines
473 B
Nix
{ 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
|
|
./files.nix
|
|
./git.nix
|
|
./gpg.nix
|
|
./hm-settings.nix
|
|
./i3.nix
|
|
./launcher.nix
|
|
./media.nix
|
|
./neovim.nix
|
|
./plasma.nix
|
|
./shell.nix
|
|
./ssh.nix
|
|
./terminal.nix
|
|
./tmux.nix
|
|
./xdg-dirs.nix
|
|
];
|
|
}
|