restructure whole project

This commit is contained in:
Daniel Olsen 2020-06-17 03:03:43 +02:00
parent ef39f51fcb
commit b5315c2108
2 changed files with 36 additions and 0 deletions

18
machines/desktop.nix Normal file
View File

@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
{
imports = [ ../profiles ];
machine = {
name = "DanixDesktop";
eth = "eno1";
};
profiles.base.enable = true;
profiles.xsession.enable = true;
profiles.zsh.enable = true;
programs.home-manager = {
enable = true;
path = "https://github.com/rycee/home-manager/archive/release-20.03.tar.gz";
};
}

18
machines/laptop.nix Normal file
View File

@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
{
imports = [ ../profiles ];
machine = {
name = "DanixLaptop";
eth = "enp0s25";
};
profiles.base.enable = true;
profiles.xsession.enable = true;
profiles.zsh.enable = true;
programs.home-manager = {
enable = true;
path = "https://github.com/rycee/home-manager/archive/release-20.03.tar.gz";
};
}