53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{ inputs, username, flake_path, ... }:
|
|
let
|
|
# Variables to share accross configs
|
|
custom = {
|
|
font = "RobotoMono Nerd Font";
|
|
fontsize = "12";
|
|
primary_accent = "cba6f7";
|
|
secondary_accent= "89b4fa";
|
|
tertiary_accent = "f5f5f5";
|
|
background = "11111B";
|
|
opacity = "1";
|
|
cursor = "Numix-Cursor";
|
|
palette = import ./colors;
|
|
};
|
|
in
|
|
{
|
|
_module.args = { inherit inputs username custom; };
|
|
imports = [
|
|
inputs.nur.hmModules.nur
|
|
./general
|
|
./programs
|
|
./themes
|
|
./wayland
|
|
];
|
|
|
|
# Let Home Manager install and mange itself
|
|
programs.home-manager.enable = true;
|
|
nixpkgs.config.allowUnfree = true;
|
|
nixpkgs.config.allowUnfreePredicate = _: true;
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"electron-24.8.6"
|
|
];
|
|
home.shellAliases = {
|
|
home-switch = "home-manager switch --flake ${flake_path}#${username}";
|
|
sudo = "sudo -E";
|
|
sudopath = "sudo env PATH=$PATH";
|
|
};
|
|
|
|
# Home Manager needs a bit of information about you and the path it should manage
|
|
home.username = "${username}";
|
|
home.homeDirectory = "/home/${username}";
|
|
|
|
# This value determines the Home Manager release that your
|
|
# configuration is compatible with. This helps avoid breakage
|
|
# when a new Home Manager release introduces backwards
|
|
# incompatible changes.
|
|
#
|
|
# You can update Home Manager without changing this value. See
|
|
# the Home Manager release notes for a list of state version
|
|
# changes in each release.
|
|
home.stateVersion = "23.05";
|
|
}
|