mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-05-07 13:36:24 +00:00
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.nixvim.homeModules.nixvim
|
|
inputs.nix-flatpak.homeManagerModules.nix-flatpak
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
|
|
../modules/graphical/waybar
|
|
../modules/graphical/cliphist.nix
|
|
../modules/graphical/dunst.nix
|
|
../modules/graphical/firefox.nix
|
|
../modules/graphical/fonts.nix
|
|
../modules/graphical/hypridle.nix
|
|
../modules/graphical/hyprland.nix
|
|
../modules/graphical/hyprshot-save.nix
|
|
../modules/graphical/kitty.nix
|
|
../modules/graphical/powermenu.nix
|
|
../modules/graphical/tofi.nix
|
|
../modules/graphical/udiskie.nix
|
|
../modules/graphical/xdg.nix
|
|
] ++ (
|
|
let
|
|
modulesPath = ../modules;
|
|
cliModules = builtins.attrNames (builtins.readDir (modulesPath + "/cli/"));
|
|
in
|
|
map (module: modulesPath + "/cli/${module}") cliModules
|
|
);
|
|
home = {
|
|
username = "toast";
|
|
homeDirectory = "/home/toast";
|
|
stateVersion = "24.11";
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
systemd.user.startServices = "sd-switch";
|
|
}
|