Skip to content

Commit

Permalink
global: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
brckd committed Jun 23, 2024
1 parent 3e6cd46 commit 447496b
Show file tree
Hide file tree
Showing 10 changed files with 174 additions and 182 deletions.
272 changes: 142 additions & 130 deletions flake.lock

Large diffs are not rendered by default.

29 changes: 25 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,30 @@
inputs.flake-parts.follows = "flake-parts";
};

# Development

flake-compat.url = "github:edolstra/flake-compat";

flake-utils.url = "github:numtide/flake-utils";

gitignore = {
url = "github:hercules-ci/gitignore";
inputs.nixpkgs.follows = "nixpkgs";
};

git-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.flake-compat.follows = "flake-compat";
inputs.gitignore.follows = "gitignore";
inputs.nixpkgs.follows = "nixpkgs";
};

devshell = {
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};

# Formatter
treefmt-nix = {
url = "github:numtide/treefmt-nix";
Expand All @@ -129,9 +149,8 @@
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs-stable.follows = "nixpkgs";
inputs.flake-compat.follows = "flake-compat";
inputs.flake-utils.follows = "flake-utils";
inputs.gitignore.follows = "gitignore";
};

# Scheming
Expand All @@ -148,9 +167,11 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-compat.follows = "flake-compat";
inputs.flake-parts.follows = "flake-parts";
inputs.pre-commit-hooks.follows = "pre-commit-hooks";
inputs.home-manager.follows = "home-manager";
inputs.nix-darwin.follows = "nix-darwin";
inputs.treefmt-nix.follows = "treefmt-nix";
inputs.devshell.follows = "devshell";
inputs.git-hooks.follows = "git-hooks";
};

ags = {
Expand All @@ -175,7 +196,7 @@
flake = false;
};
nixos-symbolic = {
url = "file+https://raw.githubusercontent.com/NixOS/nixos-artwork/master/logo/white.svg";
url = "file+https://raw.githubusercontent.com/NixOS/nixos-artwork/master/logo/nixos-white.svg";
flake = false;
};
};
Expand Down
4 changes: 1 addition & 3 deletions modules/home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ags,
...
}: {
home.stateVersion = "23.11";
home.stateVersion = "24.05";
programs.home-manager.enable = true;

imports = [
Expand All @@ -18,8 +18,6 @@
./kitty
./nixvim
./librewolf
./fastfetch
./spotify-player
./cava
./vesktop
];
Expand Down
17 changes: 0 additions & 17 deletions modules/home/fastfetch/default.nix

This file was deleted.

2 changes: 1 addition & 1 deletion modules/home/nixvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ in {
lsp = {
enable = true;
servers = {
nil_ls.enable = true;
nil-ls.enable = true;
tsserver.enable = true;
eslint.enable = true;
rust-analyzer = {
Expand Down
17 changes: 0 additions & 17 deletions modules/home/spotify-player/default.nix

This file was deleted.

3 changes: 1 addition & 2 deletions modules/home/stylix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
}: {
config = {
stylix = {
# placeholder
enable = true;
image = wallpaper;

base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
fonts = rec {
sansSerif = {
Expand Down
7 changes: 1 addition & 6 deletions modules/nixos/hyprland/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
{
config,
pkgs,
lib,
...
}:
with lib; let
cfg = config.programs.hyprland;
in {
config = mkIf cfg.enable {
hardware.opengl = {
enable = true;
driSupport = true;
};

hardware.graphics.enable = true;
environment.sessionVariables.NIXOS_OZONE_WL = "1";
};
}
4 changes: 2 additions & 2 deletions modules/nixos/sddm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
...
}:
with lib; let
cfg = config.services.xserver.displayManager.sddm;
cfg = config.services.displayManager.sddm;
in {
config = mkIf cfg.enable {
services.xserver.displayManager.sddm = {
services.displayManager.sddm = {
theme = "catppuccin-sddm-corners";
wayland.enable = true;
};
Expand Down
1 change: 1 addition & 0 deletions modules/nixos/stylix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
}: {
config = {
stylix = {
enable = true;
image = wallpaper;
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
fonts = rec {
Expand Down

0 comments on commit 447496b

Please sign in to comment.