dotfiles/machines/desktop.nix

23 lines
499 B
Nix
Raw Normal View History

{ config, lib, pkgs, overlays, ... }:
2020-06-17 03:03:43 +02:00
{
nixpkgs.overlays = overlays;
nixpkgs.config.allowUnfreePredicate = (pkg: true);
nixpkgs.config.allowUnfree = true;
2020-06-17 03:03:43 +02:00
imports = [ ../profiles ];
machine = {
name = "DanixDesktop";
eth = "eno1";
2022-04-03 17:28:22 +02:00
wlan = null;
secondary-fs = "/mnt/henning";
2020-06-17 03:03:43 +02:00
};
profiles.base.enable = true;
profiles.base.plus = true;
2020-06-17 03:03:43 +02:00
profiles.xsession.enable = true;
2022-06-05 15:47:22 +02:00
profiles.audio.fancy = true;
2020-06-17 03:03:43 +02:00
profiles.zsh.enable = true;
profiles.games.enable = true;
2020-06-17 03:03:43 +02:00
}