Beginnings of config for Darwin machines
Split out a platforms/ directory with a linux.nix and darwin.nix, and starting splitting things out between the two
This commit is contained in:
parent
86b5f58ca5
commit
9036dc7c32
10 changed files with 300 additions and 183 deletions
|
|
@ -2,6 +2,13 @@
|
|||
let
|
||||
laptopKeyboardId = "25";
|
||||
in {
|
||||
imports = [
|
||||
../platforms/linux.nix
|
||||
|
||||
../modules/common.nix
|
||||
../modules/games.nix
|
||||
];
|
||||
|
||||
system.machine = {
|
||||
wirelessInterface = "wlp59s0";
|
||||
i3FontSize = 9;
|
||||
|
|
|
|||
17
home/machines/dobharchu.nix
Normal file
17
home/machines/dobharchu.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../platforms/darwin.nix
|
||||
../modules/common.nix
|
||||
../modules/games.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
coreutils
|
||||
gnupg
|
||||
nix-prefetch-github
|
||||
pass
|
||||
pinentry_mac
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue