dotfiles/machines/laptop.nix

29 lines
595 B
Nix
Raw Normal View History

2022-06-02 05:08:38 +02:00
{ config, lib, pkgs, overlays, ... }:
2020-06-17 03:03:43 +02:00
{
2022-06-02 05:08:38 +02:00
nixpkgs.overlays = overlays;
2022-06-02 03:32:14 +02:00
nixpkgs.config.allowUnfreePredicate = (pkg: true);
2022-06-02 05:08:38 +02:00
nixpkgs.config.allowUnfree = true;
2022-06-02 03:32:14 +02:00
2020-06-17 03:03:43 +02:00
imports = [ ../profiles ];
machine = {
name = "DanixLaptop";
2021-08-20 19:20:18 +02:00
eth = "enp0s31f6";
wlan = "wlp5s0";
cores = 4;
2020-06-17 03:03:43 +02:00
};
profiles.base.enable = true;
profiles.base.plus = true;
profiles.gui.enable = true;
2020-06-17 03:03:43 +02:00
profiles.xsession.enable = true;
profiles.zsh.enable = true;
2022-04-02 03:03:20 +02:00
services.gammastep = {
enable = true;
2022-04-02 03:09:59 +02:00
dawnTime = "7:00-8:15";
2022-04-02 03:03:20 +02:00
duskTime = "21:30-22:30";
};
profiles.games.enable = true;
2020-06-17 03:03:43 +02:00
}