2022-06-02 18:18:20 +02:00
|
|
|
{ config, lib, pkgs, overlays, ... }:
|
2020-06-17 03:03:43 +02:00
|
|
|
{
|
2022-06-02 18:18:20 +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;
|
2022-05-02 14:49:06 +02:00
|
|
|
secondary-fs = "/mnt/henning";
|
2020-06-17 03:03:43 +02:00
|
|
|
};
|
|
|
|
profiles.base.enable = true;
|
2022-06-03 12:22:24 +02:00
|
|
|
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;
|
|
|
|
|
2020-07-11 04:08:58 +02:00
|
|
|
profiles.games.enable = true;
|
2024-03-20 11:01:07 +01:00
|
|
|
|
|
|
|
home.packages = [
|
|
|
|
pkgs.unstable.osu-lazer
|
|
|
|
];
|
2020-06-17 03:03:43 +02:00
|
|
|
}
|