dotfiles/machines/laptop.nix

22 lines
444 B
Nix
Raw Normal View History

2020-06-17 03:03:43 +02:00
{ config, lib, pkgs, ... }:
{
imports = [ ../profiles ];
machine = {
name = "DanixLaptop";
2021-08-20 19:20:18 +02:00
eth = "enp0s31f6";
wlan = "wlp5s0";
2020-06-17 03:03:43 +02:00
};
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;
2021-06-04 12:42:58 +02:00
path = "https://github.com/rycee/home-manager/archive/release-21.05.tar.gz";
2020-06-17 03:03:43 +02:00
};
}