dotfiles/.config/home-manager/home.nix
2026-02-04 18:04:42 +01:00

32 lines
707 B
Nix

{ config, pkgs, inputs, ... }:
{
imports = [
./theme.nix
./dms.nix
];
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
home.username = "nicole";
home.homeDirectory = "/home/nicole";
home.stateVersion = "25.11"; # Please read the comment before changing.
home.packages = with pkgs; [
];
programs.home-manager.enable = true;
services.linux-wallpaperengine = {
enable = true;
assetsPath = "/mnt/storage/SteamLibrary/steamapps/common/wallpaper_engine/assets";
};
#programs.dankMaterialShell = {
#enable = true;
#quickshell.package = inputs.quickshell.packages.x86_64-linux.default;
#};
}