feat: add NixOS config for Apollo laptop

This commit is contained in:
Oliver Davies 2022-10-02 23:42:33 +01:00
parent 60b0e1f824
commit 47ca17f781
6 changed files with 277 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
{
imports = [
./modules/common.nix
./modules/git.nix
./modules/home-manager.nix
./modules/tmux.nix
./modules/zsh.nix
];
home.stateVersion = "22.05";
home.username = "opdavies";
home.homeDirectory = "/home/opdavies";
}