Add files

This commit is contained in:
lightly-toasted 2025-08-02 22:51:40 +09:00
parent 23878851bd
commit 74000547ea
19 changed files with 764 additions and 0 deletions

28
home/toast/home.nix Normal file
View file

@ -0,0 +1,28 @@
{ 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
];
home = {
username = "toast";
homeDirectory = "/home/toast";
stateVersion = "24.11";
};
nixpkgs.config.allowUnfree = true;
systemd.user.startServices = "sd-switch";
}