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
24 changes: 15 additions & 9 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,22 @@
# Ethereum.nix for blockchain node configurations
ethereum-nix = {
url = "github:nix-community/ethereum.nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
inputs.flake-parts.follows = "flake-parts";
inputs.systems.follows = "systems";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
flake-parts.follows = "flake-parts";
systems.follows = "systems";
};
};

# Declarative Jellyfin configuration
jellarr = {
url = "github:venkyr77/jellarr";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
inputs.systems.follows = "systems";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
systems.follows = "systems";
};
};

# Secret management
Expand All @@ -63,8 +67,10 @@
# Zed Editor preview builds
zed-editor-flake = {
url = "github:shekhirin/zed-editor-flake";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
};
};

# AeroSpace custom fork with tabs support
Expand Down
2 changes: 1 addition & 1 deletion modules/darwin/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
imports = [
Expand Down
2 changes: 1 addition & 1 deletion modules/darwin/programs/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
imports = [
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
imports = [
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos/services/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
imports = [
Expand Down
3 changes: 2 additions & 1 deletion modules/nixos/services/jellyfin.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,14 @@ in
};

config = {
version = 1;
base_url = "http://localhost:8096";
users = [
{
name = "admin";
passwordFile = config.sops.secrets.jellyfin-password.path;
policy = {
IsAdministrator = true;
isAdministrator = true;
};
}
];
Expand Down
2 changes: 1 addition & 1 deletion modules/shared/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
# System-level shared configuration
Expand Down
2 changes: 1 addition & 1 deletion modules/shared/home.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
# Home-Manager-level shared configuration
Expand Down
2 changes: 1 addition & 1 deletion modules/shared/programs/amp.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
home.file.".config/amp/settings.json".text = builtins.toJSON {
Expand Down
2 changes: 1 addition & 1 deletion modules/shared/programs/cargo.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
home.file.".cargo/config.toml".text = ''
Expand Down
2 changes: 1 addition & 1 deletion modules/shared/programs/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ ... }:
_:

{
imports = [
Expand Down
4 changes: 4 additions & 0 deletions modules/shared/programs/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ _:
programs.git = {
enable = true;
settings = {
user = {
name = "Alexey Shekhirin";
email = "github@shekhirin.com";
};
core = {
editor = "vim";
};
Expand Down
Loading