Add thunderbird
This commit is contained in:
parent
7ad09aaabd
commit
48e07cef43
3 changed files with 21 additions and 12 deletions
18
.config/nix/flake.lock
generated
18
.config/nix/flake.lock
generated
|
|
@ -7,11 +7,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1694810318,
|
"lastModified": 1698429334,
|
||||||
"narHash": "sha256-LuvrVj2oj9TzdnnwtQUClqcXjpgwCP01FFVBM7azGV8=",
|
"narHash": "sha256-Gq3+QabboczSu7RMpcy79RSLMSqnySO3wsnHQk4DfbE=",
|
||||||
"owner": "lnl7",
|
"owner": "lnl7",
|
||||||
"repo": "nix-darwin",
|
"repo": "nix-darwin",
|
||||||
"rev": "80bb201f4925cdda5a7a3c7b1900fb26bb2af2e8",
|
"rev": "afe83cbc2e673b1f08d32dd0f70df599678ff1e7",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -27,11 +27,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1695043542,
|
"lastModified": 1698873617,
|
||||||
"narHash": "sha256-uUoftoffo9F+tLpepz99M5Z9dTPAiBy5EjYRScaNO1o=",
|
"narHash": "sha256-FfGFcfbULwbK1vD+H0rslIOfmy4g8f2hXiPkQG3ZCTk=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "e63a6b34792884bfe4056d1ef561b5611589b8ad",
|
"rev": "48b0a30202516e25d9885525fbb200a045f23f26",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -43,11 +43,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1694948089,
|
"lastModified": 1698931758,
|
||||||
"narHash": "sha256-d2B282GmQ9o8klc22/Rbbbj6r99EnELQpOQjWMyv0rU=",
|
"narHash": "sha256-pwl9xS9JFMXXR1lUP/QOqO9hiZKukEcVUU1A0DKQwi4=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5148520bfab61f99fd25fb9ff7bfbb50dad3c9db",
|
"rev": "b644d97bda6dae837d577e28383c10aa51e5e2d2",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -10,10 +10,12 @@
|
||||||
outputs = inputs@{ nixpkgs, home-manager, darwin, ... }: {
|
outputs = inputs@{ nixpkgs, home-manager, darwin, ... }: {
|
||||||
darwinConfigurations.TobAir = darwin.lib.darwinSystem {
|
darwinConfigurations.TobAir = darwin.lib.darwinSystem {
|
||||||
system = "aarch64-darwin";
|
system = "aarch64-darwin";
|
||||||
|
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
system = "aarch64-darwin";
|
system = "aarch64-darwin";
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
./modules/darwin
|
./modules/darwin
|
||||||
home-manager.darwinModules.home-manager
|
home-manager.darwinModules.home-manager
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,15 @@
|
||||||
({ pkgs, ... }: {
|
({ pkgs, ... }: {
|
||||||
|
services.nix-daemon.enable = true;
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
environment = {
|
|
||||||
|
environment = {
|
||||||
shells = with pkgs; [ bash zsh fish ];
|
shells = with pkgs; [ bash zsh fish ];
|
||||||
loginShell = pkgs.zsh;
|
loginShell = pkgs.zsh;
|
||||||
systemPath = [ "/opt/homebrew/bin" ];
|
systemPath = [ "/opt/homebrew/bin" ];
|
||||||
pathsToLink = [ "/Applications" ];
|
pathsToLink = [ "/Applications" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fonts.fonts = [
|
fonts.fonts = [
|
||||||
(pkgs.nerdfonts.override {
|
(pkgs.nerdfonts.override {
|
||||||
fonts = [
|
fonts = [
|
||||||
|
|
@ -20,7 +24,7 @@
|
||||||
nix.extraOptions = ''
|
nix.extraOptions = ''
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
'';
|
'';
|
||||||
services.nix-daemon.enable = true;
|
|
||||||
system.defaults = {
|
system.defaults = {
|
||||||
dock.autohide = true;
|
dock.autohide = true;
|
||||||
dock.autohide-time-modifier = 0.1;
|
dock.autohide-time-modifier = 0.1;
|
||||||
|
|
@ -51,9 +55,12 @@
|
||||||
"trippy"
|
"trippy"
|
||||||
];
|
];
|
||||||
casks = [
|
casks = [
|
||||||
"firefox"
|
|
||||||
"amethyst"
|
"amethyst"
|
||||||
|
"firefox"
|
||||||
"logseq"
|
"logseq"
|
||||||
|
"thunderbird"
|
||||||
|
"protonvpn"
|
||||||
|
"protonmail-bridge"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue