23 lines
427 B
Nix
23 lines
427 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
|
||
|
./git.nix
|
||
|
./gpg.nix
|
||
|
./hm-settings.nix
|
||
|
./launcher.nix
|
||
|
./media.nix
|
||
|
./neovim.nix
|
||
|
./shell.nix
|
||
|
./ssh.nix
|
||
|
./terminal.nix
|
||
|
./tmux.nix
|
||
|
./xdg-dirs.nix
|
||
|
];
|
||
|
}
|