mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
39 lines
900 B
Nix
39 lines
900 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
inputs.nixcord.homeModules.nixcord
|
|
inputs.nix-flatpak.homeManagerModules.nix-flatpak
|
|
|
|
./modules/kitty.nix
|
|
./modules/git.nix
|
|
./modules/nixvim
|
|
./modules/fonts.nix
|
|
./modules/hyprland.nix
|
|
./modules/tofi.nix
|
|
./modules/zsh.nix
|
|
./modules/firefox.nix
|
|
./modules/yazi.nix
|
|
./modules/nixcord.nix
|
|
./modules/nodejs.nix
|
|
./modules/btop.nix
|
|
./modules/waybar
|
|
./modules/dunst.nix
|
|
./modules/keepassxc.nix
|
|
./modules/mouse-actions
|
|
./modules/hypridle.nix
|
|
./modules/obsidian.nix
|
|
];
|
|
|
|
home = {
|
|
username = "toast";
|
|
homeDirectory = "/home/toast";
|
|
stateVersion = "24.11";
|
|
file = {
|
|
"bin" = { source = ./bin; recursive = true; };
|
|
};
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
systemd.user.startServices = "sd-switch";
|
|
}
|