ikari: init

This commit is contained in:
Daniel Olsen
2025-01-10 20:09:59 +01:00
parent 5943dbccbc
commit 0c46f6e4b2
4 changed files with 247 additions and 2 deletions

25
home/machines/ikari.nix Normal file
View File

@@ -0,0 +1,25 @@
{ config, lib, pkgs, overlays, ... }:
{
nixpkgs.overlays = overlays;
nixpkgs.config.allowUnfreePredicate = (pkg: true);
nixpkgs.config.allowUnfree = true;
imports = [ ../profiles ];
machine = {
name = "ikari";
eth = "eno1";
wlan = null;
};
profiles.base.enable = true;
profiles.base.plus = true;
profiles.xsession.enable = true;
profiles.audio.fancy = true;
profiles.zsh.enable = true;
profiles.games.enable = true;
home.packages = [
pkgs.unstable.osu-lazer
];
}