Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
number5 committed Jun 3, 2024
1 parent 03301cf commit b0ef930
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion home/modules/swappy.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}: {
options.programs.swappy.enable = lib.mkEnableOption "swappy";

config.hm.home.packages = lib.mkIf config.programs.swappy.enable [
config.home.packages = lib.mkIf config.programs.swappy.enable [
(pkgs.swappy.overrideAttrs (old: {
patches = [
(pkgs.fetchpatch
Expand Down
5 changes: 1 addition & 4 deletions home/modules/wayland/eww/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
{self, ...} @inputs: {
inputs,
pkgs,
config,
lib,
hmConfig,
...
}: {
options.programs.eww = {
Expand All @@ -18,7 +17,6 @@
};

config = lib.mkIf config.programs.eww.enable {
hm = {
home.packages = with pkgs; [
(inputs.eww.packages.${pkgs.system}.eww-wayland.overrideAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs ++ [pkgs.wrapGAppsHook];
Expand Down Expand Up @@ -72,6 +70,5 @@
};
})
files;
};
};
}
4 changes: 2 additions & 2 deletions home/modules/wayland/hyprland.nix
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,14 @@ in {
xdg.portal.wlr.enable = lib.mkForce false;
};

hm = let
home = let
cursor = {
package = pkgs.catppuccin-cursors.macchiatoPink;
name = "Catppuccin-Macchiato-Pink-Cursors";
size = 24;
};
in {
home.packages = with pkgs;
packages = with pkgs;
with inputs.hyprcontrib.packages.${pkgs.system};
with inputs.shadower.packages.${pkgs.system}; [
pulseaudio
Expand Down
1 change: 1 addition & 0 deletions parts/home_configs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ in {
{home = {inherit (config) username homeDirectory;};}
{systemd.user.startServices = "legacy";}
inputs.sops-nix.homeManagerModules.sops
inputs.catppuccin.homeManagerModules.catppuccin
]
++ config.modules
++ builtins.attrValues self.homeModules
Expand Down
1 change: 0 additions & 1 deletion parts/system_configs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ in {
{documentation.man.generateCaches = true;}
inputs.disko.nixosModules.disko
inputs.sops-nix.nixosModules.sops
inputs.catppuccin.nixosModules.catppuccin
]
++ config.modules
++ builtins.attrValues {
Expand Down

0 comments on commit b0ef930

Please sign in to comment.