dotfiles/machines/laptop.nix

21 lines
421 B
Nix
Raw Normal View History

2020-06-17 03:03:43 +02:00
{ config, lib, pkgs, ... }:
{
imports = [ ../profiles ];
machine = {
name = "DanixLaptop";
eth = "enp0s25";
};
profiles.base.enable = true;
profiles.gui.enable = true;
2020-06-17 03:03:43 +02:00
profiles.xsession.enable = true;
profiles.zsh.enable = true;
profiles.games.enable = true;
2020-06-17 03:03:43 +02:00
programs.home-manager = {
enable = true;
path = "https://github.com/rycee/home-manager/archive/release-20.03.tar.gz";
};
}