Started working on darwin integration
This commit is contained in:
parent
ce354185e8
commit
64342dd5c2
5 changed files with 66 additions and 1 deletions
30
hosts/mbp/configuration.nix
Normal file
30
hosts/mbp/configuration.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{pkgs, home-manager, ...}:
|
||||
{
|
||||
imports = [
|
||||
../../users/andreaciceri
|
||||
];
|
||||
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
};
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
|
||||
nix = {
|
||||
package = pkgs.nixUnstable;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes flakes ca-references
|
||||
keep-derivations = true
|
||||
keep-outputs = true
|
||||
'';
|
||||
gc = {
|
||||
automatic = false;
|
||||
user = "andreaciceri";
|
||||
options = "--delete-older-than 3d";
|
||||
};
|
||||
};
|
||||
}
|
8
hosts/mbp/default.nix
Normal file
8
hosts/mbp/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ...}:
|
||||
{
|
||||
imports = [
|
||||
./configuration.nix
|
||||
];
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue