28 lines
843 B
Nix
28 lines
843 B
Nix
{ inputs, config, pkgs, user, ... }: {
|
|
|
|
home = {
|
|
username = "${user}";
|
|
homeDirectory = "/home/${user}";
|
|
};
|
|
|
|
imports = [
|
|
./shared.nix
|
|
./emacs.nix
|
|
./zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [];
|
|
|
|
home.file = {
|
|
".Xresources".source = ../dotfiles/.Xresources;
|
|
".scripts/brightness.sh".source = ../dotfiles/.scripts/brightness.sh;
|
|
".scripts/autostart_desktop.sh".source = ../dotfiles/.scripts/autostart_desktop.sh;
|
|
".screenlayout/launch.sh".source = ../dotfiles/.screenlayout/launch.sh;
|
|
".screenlayout/wallpapers.sh".source = ../dotfiles/.screenlayout/wallpapers.sh;
|
|
".config/i3/config".source = ../dotfiles/.config/i3/config;
|
|
".config/rofi/config.rasi".source = ../dotfiles/.config/rofi/config.rasi;
|
|
".config/polybar/config.ini".source = ../dotfiles/.config/polybar/config.ini;
|
|
|
|
};
|
|
}
|