Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
number5 committed Jul 1, 2024
1 parent 33f7049 commit 3c53b24
Show file tree
Hide file tree
Showing 7 changed files with 83 additions and 93 deletions.
90 changes: 56 additions & 34 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@

catppuccin.url = "github:catppuccin/nix";

matugen = {
url = "github:InioX/matugen/module";
inputs.nixpkgs.follows = "nixpkgs";
};

dotzsh.url = "github:number5/dotzsh";
dotzsh.flake = false;
};
Expand Down
53 changes: 0 additions & 53 deletions home/common.nix

This file was deleted.

2 changes: 1 addition & 1 deletion home/configurations/bruce_at_chestnut.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

repos = {
asdf = {
branch = "v0.13.1";
branch = "v0.14.0";
repo = "https://github.com/asdf-vm/asdf.git";
target = "${config.home.homeDirectory}/.asdf";
};
Expand Down
20 changes: 19 additions & 1 deletion home/modules/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ in {
./starship.nix
];

home = {
home = let
cursor = {
package = pkgs.catppuccin-cursors.macchiatoTeal;
name = "catppuccin-macchiato-teal-cursors";
size = 24;
};
in {
packages = let
p = pkgs;
s = self';
Expand All @@ -25,6 +31,18 @@ in {
p.lefthook
];


pointerCursor = {
gtk.enable = true;
name = cursor.name;
package = cursor.package;
size = cursor.size;
x11 = {
defaultCursor = cursor.name;
enable = true;
};
};

stateVersion = "24.05";
};
}
5 changes: 1 addition & 4 deletions nixos/modules/system/misc.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
{
config,
pkgs,
lib,
...
}: {
# Steam fix
hardware.opengl.driSupport32Bit = true;
hardware.graphics.enable32Bit = true;

# This setups a SSH server. Very important if you're setting up a headless system.
# Feel free to remove if you don't need it.
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 {
{systemd.user.startServices = "legacy";}
inputs.sops-nix.homeManagerModules.sops
inputs.catppuccin.homeManagerModules.catppuccin
inputs.matugen.nixosModules.default
inputs.hyprland.homeManagerModules.default
inputs.anyrun.homeManagerModules.default
]
Expand Down

0 comments on commit 3c53b24

Please sign in to comment.