mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
49 lines
939 B
Nix
49 lines
939 B
Nix
{
|
|
outputs,
|
|
username,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.impermanence.nixosModules.home-manager.impermanence
|
|
|
|
../../modules/home/shell
|
|
../../modules/home/git
|
|
../../modules/home/starship
|
|
../../modules/home/nvim
|
|
../../modules/home/tmux
|
|
../../modules/home/helix
|
|
../../modules/home/aria2
|
|
];
|
|
|
|
nixpkgs = {
|
|
overlays = [
|
|
outputs.overlays.additions
|
|
outputs.overlays.modifications
|
|
outputs.overlays.stable-packages
|
|
outputs.overlays.nur
|
|
outputs.overlays.nix-vscode-extensions
|
|
];
|
|
|
|
config = {
|
|
allowUnfree = true;
|
|
allowUnfreePredicate = _: true;
|
|
joypixels.acceptLicense = true;
|
|
};
|
|
};
|
|
|
|
programs.nix-index = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
home = {
|
|
username = "${username}";
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
systemd.user.startServices = "sd-switch";
|
|
}
|