mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
22 lines
427 B
Nix
22 lines
427 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
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";
|
|
}
|