mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
Add darwin-specific stuff for Sumireko, needs refactoring later
This commit is contained in:
parent
00d85563ba
commit
efae399c70
5 changed files with 111 additions and 15 deletions
13
darwin/configuration.nix
Normal file
13
darwin/configuration.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, lib, ... }: {
|
||||
services.nix-daemon.enable = true;
|
||||
nix = {
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
package = pkgs.nixFlakes;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
awscli
|
||||
];
|
||||
system.stateVersion = 4;
|
||||
}
|
||||
4
darwin/home-base.nix
Normal file
4
darwin/home-base.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{ config, ... }: {
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
}
|
||||
4
darwin/home.nix
Normal file
4
darwin/home.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{ config, pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue