Skip to content

Commit 259724d

Browse files
committed
reformat
1 parent 3bb62f1 commit 259724d

File tree

12 files changed

+547
-504
lines changed

12 files changed

+547
-504
lines changed

darwin-modules/linux-builder.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
maxJobs = 4;
55
ephemeral = true;
66
config = {
7-
# imports = [
8-
# ../nixos-modules/user-peteresselius.nix
9-
# ../nixos-modules/sysdig.nix
10-
# ];
7+
# imports = [
8+
# ../nixos-modules/user-peteresselius.nix
9+
# ../nixos-modules/sysdig.nix
10+
# ];
1111
virtualisation = {
1212
darwin-builder = {
1313
diskSize = 100 * 1024;

flake.nix

Lines changed: 32 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,37 @@
1515
# cfg-work.url = "github:esselius/cfg-work";
1616
raspberry-pi-nix.url = "github:tstat/raspberry-pi-nix/v0.4.1";
1717
raspberry-pi-nix.inputs.nixpkgs.follows = "nixpkgs";
18-
authentik-nix.url = "github:nix-community/authentik-nix/version/2025.2.1";
19-
authentik-nix.inputs.nixpkgs.follows = "nixpkgs";
20-
authentik-nix.inputs.flake-parts.follows = "flake-parts";
18+
authentik-nix = {
19+
url = "github:nix-community/authentik-nix/version/2025.2.1";
20+
inputs.nixpkgs.follows = "nixpkgs";
21+
inputs.flake-parts.follows = "flake-parts";
22+
};
2123

2224
nix-darwin.url = "github:lnl7/nix-darwin/nix-darwin-24.11";
2325
nix-darwin.inputs.nixpkgs.follows = "nixpkgs-darwin";
2426
home-manager.url = "github:nix-community/home-manager/release-24.11";
2527
home-manager.inputs.nixpkgs.follows = "nixpkgs";
26-
nix-homebrew.url = "github:zhaofengli/nix-homebrew";
27-
nix-homebrew.inputs.nix-darwin.follows = "nix-darwin";
28-
nix-homebrew.inputs.nixpkgs.follows = "nixpkgs-darwin";
28+
nix-homebrew = {
29+
url = "github:zhaofengli/nix-homebrew";
30+
inputs.nix-darwin.follows = "nix-darwin";
31+
inputs.nixpkgs.follows = "nixpkgs-darwin";
32+
};
2933

3034
flake-parts.url = "github:hercules-ci/flake-parts";
31-
ez-configs.url = "github:ehllie/ez-configs";
32-
ez-configs.inputs.nixpkgs.follows = "nixpkgs";
33-
ez-configs.inputs.flake-parts.follows = "flake-parts";
35+
ez-configs = {
36+
url = "github:ehllie/ez-configs";
37+
inputs.nixpkgs.follows = "nixpkgs";
38+
inputs.flake-parts.follows = "flake-parts";
39+
};
3440

35-
agenix.url = "github:ryantm/agenix";
36-
agenix.inputs.nixpkgs.follows = "nixpkgs";
37-
agenix.inputs.home-manager.follows = "home-manager";
38-
agenix.inputs.darwin.follows = "nix-darwin";
41+
agenix = {
42+
url = "github:ryantm/agenix";
43+
inputs = {
44+
nixpkgs.follows = "nixpkgs";
45+
home-manager.follows = "home-manager";
46+
darwin.follows = "nix-darwin";
47+
};
48+
};
3949

4050
nix-index-database.url = "github:nix-community/nix-index-database";
4151
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
@@ -56,11 +66,15 @@
5666
root = ./.;
5767
globalArgs = { inherit inputs; };
5868

59-
darwin.hosts.Fox.userHomeModules = [ "peteresselius" ];
60-
darwin.hosts.Petere-MBP.userHomeModules = [ "peteresselius" ];
61-
nixos.hosts.adama.userHomeModules = [ "peteresselius" ];
62-
nixos.hosts.vm.userHomeModules = [ "peteresselius" ];
63-
nixos.hosts.starbuck.userHomeModules = [ "peteresselius" ];
69+
darwin.hosts = {
70+
Fox.userHomeModules = [ "peteresselius" ];
71+
Petere-MBP.userHomeModules = [ "peteresselius" ];
72+
};
73+
nixos.hosts = {
74+
adama.userHomeModules = [ "peteresselius" ];
75+
vm.userHomeModules = [ "peteresselius" ];
76+
starbuck.userHomeModules = [ "peteresselius" ];
77+
};
6478
};
6579

6680
dev.enable = true;

home-modules/fish-shell.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
starship = {
1313
enable = true;
1414
enableFishIntegration = true;
15-
settings.gcloud.disabled = true;
16-
settings.scala.disabled = true;
17-
settings.python.disabled = true;
18-
settings.git_status.disabled = true;
15+
settings = {
16+
gcloud.disabled = true;
17+
scala.disabled = true;
18+
python.disabled = true;
19+
git_status.disabled = true;
20+
};
1921
};
2022

2123
direnv = {

home-modules/neovim.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ in
6868
clangd.enable = true;
6969
regols = {
7070
enable = true;
71-
filetypes = ["rego"];
71+
filetypes = [ "rego" ];
7272
};
7373
};
7474
};

0 commit comments

Comments
 (0)