Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions flake.lock

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

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
description = "refnode's Nix configurations";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nix-darwin.url = "github:lnl7/nix-darwin/nix-darwin-24.11";
nix-darwin.url = "github:lnl7/nix-darwin/nix-darwin-25.05";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager/release-24.11";
home-manager.url = "github:nix-community/home-manager/release-25.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
pre-commit-hooks.url = "github:cachix/git-hooks.nix";
pre-commit-hooks.inputs.nixpkgs.follows = "nixpkgs";
Expand Down
8 changes: 2 additions & 6 deletions hosts/common/core/fonts.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
{pkgs, ...}: {
fonts = {
packages = [
(pkgs.nerdfonts.override {
fonts = [
"JetBrainsMono"
"Meslo"
];
})
pkgs.nerd-fonts.jetbrains-mono
pkgs.nerd-fonts.meslo-lg
];
};
}
5 changes: 2 additions & 3 deletions hosts/common/core/nix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
nix = {
# package = pkgs.nixVersions.nix_2_16;
checkConfig = true;
configureBuildUsers = true;
settings = {
# Necessary for using flakes on this system.
experimental-features = [
Expand All @@ -28,6 +27,6 @@
};
};

# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
# nix-darwin manages nix-daemon unconditionally when
nix.enable = true;
}
2 changes: 2 additions & 0 deletions hosts/common/darwin/core/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@
};

environment.systemPath = ["/opt/homebrew/bin"];

system.primaryUser = "refnode";
}
2 changes: 1 addition & 1 deletion overlays/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
unstable = import nixpkgs-unstable {
system = final.system;
# activate unfree when I know that I need it.
config.allowUnfree = false;
config.allowUnfree = true;
};
};
}
2 changes: 1 addition & 1 deletion users/refnode/common/core/zsh/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
autosuggestion.enable = true;
autosuggestion.highlight = "fg=#d8dee9,bg=#4c566a";

initExtra = builtins.readFile ./zsh.sh;
initContent = builtins.readFile ./zsh.sh;
};

# enable the fzf zsh integration by default history, file and directory
Expand Down
2 changes: 1 addition & 1 deletion users/refnode/common/optional/desktop/darwin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
...
}: {
home.packages = with pkgs; [
darwin.iproute2mac
iproute2mac
];
}
Loading