mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 21:08:08 +02:00
Import home modules in their respective .nix files
This commit is contained in:
parent
93ae664be9
commit
b40e0115f5
@ -4,6 +4,8 @@ let
|
||||
shared_theme = "Catppuccin-GTK-Red-Dark";
|
||||
in
|
||||
{
|
||||
imports = [ "${nixtamal.catppuccin}/modules/home-manager" ];
|
||||
|
||||
catppuccin = {
|
||||
autoEnable = true;
|
||||
enable = true;
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
{ config, pkgs, nixtamal, functions, localPackagesOverlay, ... }:
|
||||
|
||||
let
|
||||
spicetify-nix = import nixtamal.nix-spicetify { pkgs = import nixtamal.nixpkgs { }; };
|
||||
in
|
||||
{
|
||||
home.username = "doggo";
|
||||
home.homeDirectory = "/home/doggo";
|
||||
@ -83,7 +80,6 @@ in
|
||||
];
|
||||
|
||||
imports = [
|
||||
"${nixtamal.catppuccin}/modules/home-manager"
|
||||
./catppuccin-config.nix
|
||||
./hyprland-config.nix
|
||||
./ironbar-config.nix
|
||||
@ -92,10 +88,8 @@ in
|
||||
./discord-config.nix
|
||||
./firefox-config.nix
|
||||
./mpv-config.nix
|
||||
spicetify-nix.homeManagerModules.spicetify
|
||||
./spicetify-config.nix
|
||||
];
|
||||
_module.args = { inherit spicetify-nix; };
|
||||
|
||||
qt = {
|
||||
enable = true;
|
||||
|
||||
@ -1,6 +1,11 @@
|
||||
{ spicetify-nix, nixtamal, ... }:
|
||||
{ nixtamal, ... }:
|
||||
|
||||
let
|
||||
spicetify-nix = import nixtamal.nix-spicetify { pkgs = import nixtamal.nixpkgs { }; };
|
||||
in
|
||||
{
|
||||
imports = [ spicetify-nix.homeManagerModules.spicetify ];
|
||||
|
||||
programs.spicetify = {
|
||||
enable = true;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user