-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfd46f0
commit ff70e16
Showing
14 changed files
with
122 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
./desktop-standalone-packages | ||
./dircolors | ||
./direnv | ||
./eza | ||
./eza | ||
./fonts | ||
./git | ||
./helix | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
home.packages = [ | ||
pkgs.discord | ||
pkgs.obsidian | ||
pkgs.spotube | ||
pkgs.spotube | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
{ | ||
|
||
} | ||
{ } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
{ pkgs, home-manager, ... }: | ||
{ | ||
|
||
default = pkgs.mkShell { | ||
packages = with pkgs; [ | ||
nixos-rebuild | ||
just | ||
stylua | ||
deadnix | ||
nixpkgs-fmt | ||
selene | ||
home-manager.packages.${system}.default | ||
]; | ||
}; | ||
ci = pkgs.mkShell { | ||
packages = with pkgs; [ | ||
just | ||
nixos-rebuild | ||
jq | ||
]; | ||
}; | ||
default = pkgs.mkShell { | ||
packages = with pkgs; [ | ||
nixos-rebuild | ||
just | ||
stylua | ||
deadnix | ||
nixpkgs-fmt | ||
selene | ||
statix | ||
home-manager.packages.${system}.default | ||
]; | ||
}; | ||
ci = pkgs.mkShell { | ||
packages = with pkgs; [ | ||
just | ||
nixos-rebuild | ||
jq | ||
]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
{ | ||
nix = { | ||
settings = { | ||
experimental-features = [ | ||
"nix-command" | ||
"flakes" | ||
]; | ||
auto-optimise-store = true; | ||
settings = { | ||
experimental-features = [ | ||
"nix-command" | ||
"flakes" | ||
]; | ||
auto-optimise-store = true; | ||
trusted-substituters = [ | ||
"https://tomodachi94.cachix.org" | ||
"https://cache.nixos.org" | ||
]; | ||
trusted-public-keys = [ | ||
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" | ||
"tomodachi94.cachix.org-1:E1WFk+SYPtq3FFO+NvDgsyciIHg8nHxB/z7qNfojxpI=" | ||
]; | ||
}; | ||
gc = { | ||
automatic = true; | ||
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" | ||
"tomodachi94.cachix.org-1:E1WFk+SYPtq3FFO+NvDgsyciIHg8nHxB/z7qNfojxpI=" | ||
]; | ||
}; | ||
gc = { | ||
automatic = true; | ||
dates = "weekly"; | ||
options = "--delete-old --delete-older-than 14d"; | ||
}; | ||
options = "--delete-old --delete-older-than 14d"; | ||
}; | ||
}; | ||
} |