tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
chore: fixes
devins.page
2 months ago
c8e0849c
88b41c06
+4
-1
3 changed files
expand all
collapse all
unified
split
.gitignore
modules
common
default.nix
darwin
default.nix
+1
.gitignore
···
1
1
+
**/.DS_Store
+2
-1
modules/common/default.nix
···
1
1
-
{...}: {
1
1
+
{pkgs, ...}: {
2
2
imports = [../users/devin.nix];
3
3
4
4
nix = {
···
13
13
nixpkgs.config.allowUnfree = true;
14
14
15
15
programs.fish.enable = true;
16
16
+
environment.shells = [ pkgs.fish ];
16
17
}
+1
modules/darwin/default.nix
···
1
1
{lib, ...}: {
2
2
system.stateVersion = 6;
3
3
+
system.primaryUser = "devin";
3
4
nixpkgs.hostPlatform = lib.mkDefault "aarch64-darwin";
4
5
5
6
homebrew = {