mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 15:45:39 +00:00
25 lines
564 B
Nix
25 lines
564 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
inputs.nixcord.homeModules.nixcord
|
|
inputs.nix-flatpak.homeManagerModules.nix-flatpak
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
|
|
../modules/cli/git.nix
|
|
../modules/cli/ripgrep.nix
|
|
../modules/cli/sops.nix
|
|
../modules/cli/yazi.nix
|
|
../modules/cli/zsh.nix
|
|
];
|
|
|
|
home = {
|
|
username = "toast";
|
|
homeDirectory = "/home/toast";
|
|
stateVersion = "24.11";
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
systemd.user.startServices = "sd-switch";
|
|
}
|