Skip to content

Commit 329ccbd

Browse files
committed
Update
1 parent f02a2ce commit 329ccbd

32 files changed

+180
-311
lines changed

.github/mergify.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pull_request_rules:
1010
actions:
1111
queue:
1212
name: default
13-
method: merge
13+
merge_method: squash
1414
update_method: merge
1515
- name: Automatic update
1616
conditions:
@@ -21,5 +21,5 @@ pull_request_rules:
2121

2222
queue_rules:
2323
- name: default
24-
conditions:
25-
- "check-success=build"
24+
merge_conditions:
25+
- "check-success=build"
File renamed without changes.
File renamed without changes.
File renamed without changes.

darwin/common/global/homebrew.nix darwin/common/homebrew.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"the-unarchiver"
2424
"visual-studio-code"
2525
"raycast"
26-
"wezterm-nightly"
26+
"wezterm@nightly"
2727
"zoom"
2828
"macfuse"
2929
"obsidian"

darwin/common/global/nix.nix darwin/common/nix.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
trusted-public-keys = outputs.nixConfig.extra-trusted-public-keys;
1414

1515
experimental-features = ["nix-command" "flakes" "repl-flake"];
16-
auto-optimise-store = lib.mkDefault true;
16+
auto-optimise-store = false;
1717
warn-dirty = false;
1818
};
1919

File renamed without changes.

darwin/common/users/sakuraba.nix

-8
This file was deleted.

darwin/hosts/BVA769AW6V/default.nix

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
1-
{...}: {
1+
{...}: let
2+
hostName = "BVA769AW6V";
3+
in {
24
imports = [
3-
../../common/global
4-
../../common/users/sakuraba.nix
5+
../../common
56
];
67

7-
nix.settings.auto-optimise-store = false;
8-
networking.hostName = "BVA769AW6V";
8+
networking.hostName = hostName;
9+
10+
users.users.sakuraba.name = "sakuraba";
11+
users.users.sakuraba.home = "/Users/sakuraba";
12+
home-manager.users.sakuraba = {
13+
imports = [
14+
../../../home/profiles/desktop
15+
];
16+
home.stateVersion = "24.11";
17+
};
918
}

darwin/hosts/QN63HFT2NY/default.nix

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
1-
{...}: {
1+
{...}: let
2+
hostName = "QN63HFT2NY";
3+
in {
24
imports = [
3-
../../common/global
4-
../../common/users/sakuraba.nix
5+
../../common
56
];
67

7-
nix.settings.auto-optimise-store = false;
8-
networking.hostName = "QN63HFT2NY";
8+
networking.hostName = hostName;
9+
10+
users.users.sakuraba.name = "sakuraba";
11+
users.users.sakuraba.home = "/Users/sakuraba";
12+
home-manager.users.sakuraba = {
13+
imports = [
14+
../../../home/profiles/desktop
15+
];
16+
home.stateVersion = "24.11";
17+
};
918
}

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
extraSpecialArgs = {
6969
inherit inputs outputs;
7070
};
71-
modules = [./home/users/sakuraba/home.nix];
71+
modules = [./home/hosts/standalone.nix];
7272
};
7373
};
7474
})

home/features/atuin.nix

-9
This file was deleted.

home/features/bat.nix

-13
This file was deleted.

home/features/cli.nix

-27
This file was deleted.

home/features/espanso.nix

-3
This file was deleted.

home/features/fish.nix

-77
This file was deleted.

home/features/fzf.nix

-27
This file was deleted.

home/features/hammerspoon/Spoons/CtrlMeta.spoon/init.lua

-63
This file was deleted.

home/features/hammerspoon/default.nix

-15
This file was deleted.

home/features/hammerspoon/init.lua

-2
This file was deleted.

home/features/starship.nix

-8
This file was deleted.

home/hosts/standalone/default.nix

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
imports = [
3+
../../profiles/minimal
4+
];
5+
6+
home.stateVersion = "24.11";
7+
manual.manpages.enable = false;
8+
}

home/profiles/desktop/default.nix

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
imports =[
3+
../minimal
4+
5+
./zed
6+
./wezterm
7+
];
8+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)