48 lines
787 B
Nix
48 lines
787 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
home.username = "nico";
|
|
home.homeDirectory = "/home/nico";
|
|
|
|
imports = [
|
|
./packages
|
|
inputs.spicetify-nix.homeManagerModules.default
|
|
];
|
|
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
allowUnfreePredicate = (_: true);
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
floorp
|
|
];
|
|
|
|
programs.spicetify =
|
|
let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
|
in
|
|
{
|
|
enable = true;
|
|
theme = spicePkgs.themes.catppuccin;
|
|
colorScheme = "mocha";
|
|
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
keyboardShortcut
|
|
wikify
|
|
songStats
|
|
betterGenres
|
|
hidePodcasts
|
|
fullScreen
|
|
];
|
|
};
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|
|
|