Skip to content

Commit f74d75a

Browse files
Add eturkeltaub-mb host
1 parent fc72856 commit f74d75a

File tree

11 files changed

+255
-4191
lines changed

11 files changed

+255
-4191
lines changed

flake.lock

Lines changed: 196 additions & 4185 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030
home-manager.url = "github:nix-community/home-manager";
3131
home-manager.inputs.nixpkgs.follows = "nixpkgs";
3232

33-
tilde-secrets.url = "git+ssh://git@github.com/ethnt/tilde-secrets";
34-
3533
flake-root.url = "github:srid/flake-root";
3634

3735
haumea.url = "github:nix-community/haumea";
@@ -62,7 +60,7 @@
6260

6361
./pkgs
6462

65-
./modules/core/secrets.nix
63+
# ./modules/core/secrets.nix
6664
./modules/core/flake-root.nix
6765

6866
./modules/development/shell.nix

hosts/default.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,10 @@ in {
2929
name = "eMac";
3030
system = "aarch64-darwin";
3131
};
32+
33+
eturkeltaub-mb = mkDarwinConfiguration {
34+
name = "eturkeltaub-mb";
35+
system = "aarch64-darwin";
36+
};
3237
};
3338
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{ suites, profiles, ... }: {
2+
imports = with suites; base ++ fonts ++ [ profiles.users."ethan.turkeltaub" ];
3+
4+
tilde.host = {
5+
name = "eturkeltaub-mb";
6+
directory = "/Users/ethan/Workspace/tilde";
7+
system = "aarch64-darwin";
8+
};
9+
}

modules/profiles/home/vscode/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@
4040
version = "0.19.0";
4141
sha256 = "awbqFv6YuYI0tzM/QbHRTUl4B2vNUdy52F4nPmv+dRU=";
4242
}
43+
{
44+
name = "nixfmt-vscode";
45+
publisher = "brettm12345";
46+
version = "0.0.1";
47+
sha256 = "8yglQDUc0CXG2EMi2/HXDJsxmXJ4YHvjNjTMnQwrgx8=";
48+
}
4349
];
4450

4551
userSettings = {

modules/profiles/system/darwin/brew.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
homebrew = {
55
enable = true;
66

7-
onActivation.cleanup = lib.mkDefault "zap";
7+
onActivation.cleanup = lib.mkDefault "none";
88

99
casks = [
1010
"1password"

modules/profiles/system/darwin/common.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@
2121

2222
system.checks.verifyNixPath = true;
2323
system.stateVersion = 4;
24+
25+
ids.gids.nixbld = 350;
2426
}

modules/profiles/system/home-manager/common.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
XDG_STATE_HOME = "$HOME/.local/state";
2626
};
2727

28-
xdg.configFile."nix/registry.json".text =
29-
config.environment.etc."nix/registry.json".text;
28+
# xdg.configFile."nix/registry.json".text =
29+
# config.environment.etc."nix/registry.json".text;
3030
}];
3131
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{ homeConfigurations, ... }: {
2+
tilde.host.primaryUser = {
3+
username = "ethan.turkeltaub";
4+
homeDirectory = "/Users/ethan.turkeltaub";
5+
};
6+
7+
home-manager.users."ethan.turkeltaub" = homeConfigurations."ethan.turkeltaub";
8+
}

users/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ in rec {
1515
flake = {
1616
homeConfigurations = {
1717
ethan = mkHomeConfiguration { username = "ethan"; };
18+
"ethan.turkeltaub" =
19+
mkHomeConfiguration { username = "ethan.turkeltaub"; };
1820
};
1921

2022
homeConfigurationsPortable = l.genAttrs config.systems (sys:

0 commit comments

Comments
 (0)