mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
29 lines
644 B
Nix
29 lines
644 B
Nix
{ config, pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
inputs.nixcord.homeModules.nixcord
|
|
|
|
./programs/kitty.nix
|
|
./programs/git.nix
|
|
./programs/nixvim.nix
|
|
./programs/fonts.nix
|
|
./programs/hyprland.nix
|
|
./programs/tofi.nix
|
|
./programs/wlogout.nix
|
|
./programs/zsh.nix
|
|
./programs/firefox.nix
|
|
./programs/yazi.nix
|
|
./programs/nixcord.nix
|
|
./programs/prismlauncher.nix
|
|
];
|
|
|
|
home = {
|
|
username = "toast";
|
|
homeDirectory = "/home/toast";
|
|
stateVersion = "24.11";
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
systemd.user.startServices = "sd-switch";
|
|
}
|