mirror of
https://codeberg.org/muon/home.git
synced 2025-12-05 23:57:46 +00:00
36 lines
505 B
Nix
36 lines
505 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
self,
|
|
stylix,
|
|
...
|
|
}:
|
|
{
|
|
config.home.stateVersion = "23.05";
|
|
config.home.extraOutputsToInstall = ["doc" "devdoc"];
|
|
|
|
imports = [
|
|
./packages.nix
|
|
|
|
./git
|
|
./shell
|
|
./alacritty
|
|
./helix
|
|
./tools
|
|
./qutebrowser
|
|
|
|
stylix.homeManagerModules.stylix
|
|
./theme
|
|
|
|
# ./herbstluftwm
|
|
# ./leftwm
|
|
./xmonad
|
|
# ./hyprland
|
|
# inputs.hyprland.homeManagerModules.default
|
|
|
|
# inputs.nix-doom-emacs.hmModule
|
|
# ./doom-emacs
|
|
];
|
|
}
|