feat: Bring Darwin into line and fix issues

This commit is contained in:
Kyle Brown 2024-02-27 19:06:27 -08:00
parent 07444cfa79
commit 23e9f1b695
10 changed files with 28 additions and 9 deletions

View file

@ -134,8 +134,10 @@
darwinConfigurations = {
# M2 Mac mini
cubert = mkDarwin "aarch64-darwin" [
./hosts/cubert
{home-manager.users.kdb424 = ./home-manager/machines/cubert.nix;}
home-manager.darwinModules.home-manager
stylix.darwinModules.stylix
./hosts/cubert
];
};

View file

@ -23,6 +23,7 @@
imports = [
../modules/common.nix
../modules/commonGUI.nix
../modules/linux.nix
../modules/linuxGUI.nix
../modules/hyprland.nix
];

View file

@ -28,6 +28,7 @@
../modules/mac.nix
../modules/commonGUI.nix
];
stylix = {
image = pkgs.fetchurl {
url = "https://w.wallhaven.cc/full/1p/wallhaven-1poo61.jpg";

View file

@ -22,5 +22,6 @@
programs.home-manager.enable = true;
imports = [
../modules/common.nix
../modules/linux.nix
];
}

View file

@ -23,6 +23,7 @@
imports = [
../modules/common.nix
../modules/commonGUI.nix
../modules/linux.nix
../modules/linuxGUI.nix
../modules/hyprland.nix
];

View file

@ -22,11 +22,6 @@
nix-direnv.enable = true;
};
services.lorri = {
enable = true;
enableNotifications = true;
};
home.packages = with pkgs;
[
# dotfiles

View file

@ -5,9 +5,6 @@
fonts.fontconfig.enable = true;
# Bluetooth power alerts
services.poweralertd.enable = true;
home.packages = with pkgs; [
# fonts
rPackages.fontawesome

View file

@ -0,0 +1,11 @@
{
config,
lib,
pkgs,
...
}: {
services.lorri = {
enable = true;
enableNotifications = true;
};
}

View file

@ -9,6 +9,9 @@
wrapDiscord = false;
};
# Bluetooth power alerts
services.poweralertd.enable = true;
home.packages = with pkgs; [
orca-slicer
betterdiscordctl

View file

@ -10,5 +10,12 @@ in {
../../common/darwin
];
stylix = {
image = pkgs.fetchurl {
url = "https://w.wallhaven.cc/full/6k/wallhaven-6kv1ow.png";
sha256 = "sha256-b3EAkJpstDRm3VyJzuT7ACg6K0y2W5EMbf7qBZQBhi4=";
};
};
system.stateVersion = 4;
}