feat: Bring Darwin into line and fix issues
This commit is contained in:
parent
07444cfa79
commit
23e9f1b695
10 changed files with 28 additions and 9 deletions
|
@ -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
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
imports = [
|
||||
../modules/common.nix
|
||||
../modules/commonGUI.nix
|
||||
../modules/linux.nix
|
||||
../modules/linuxGUI.nix
|
||||
../modules/hyprland.nix
|
||||
];
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
../modules/mac.nix
|
||||
../modules/commonGUI.nix
|
||||
];
|
||||
|
||||
stylix = {
|
||||
image = pkgs.fetchurl {
|
||||
url = "https://w.wallhaven.cc/full/1p/wallhaven-1poo61.jpg";
|
||||
|
|
|
@ -22,5 +22,6 @@
|
|||
programs.home-manager.enable = true;
|
||||
imports = [
|
||||
../modules/common.nix
|
||||
../modules/linux.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
imports = [
|
||||
../modules/common.nix
|
||||
../modules/commonGUI.nix
|
||||
../modules/linux.nix
|
||||
../modules/linuxGUI.nix
|
||||
../modules/hyprland.nix
|
||||
];
|
||||
|
|
|
@ -22,11 +22,6 @@
|
|||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
services.lorri = {
|
||||
enable = true;
|
||||
enableNotifications = true;
|
||||
};
|
||||
|
||||
home.packages = with pkgs;
|
||||
[
|
||||
# dotfiles
|
||||
|
|
|
@ -5,9 +5,6 @@
|
|||
|
||||
fonts.fontconfig.enable = true;
|
||||
|
||||
# Bluetooth power alerts
|
||||
services.poweralertd.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# fonts
|
||||
rPackages.fontawesome
|
||||
|
|
11
home-manager/modules/linux.nix
Normal file
11
home-manager/modules/linux.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
services.lorri = {
|
||||
enable = true;
|
||||
enableNotifications = true;
|
||||
};
|
||||
}
|
|
@ -9,6 +9,9 @@
|
|||
wrapDiscord = false;
|
||||
};
|
||||
|
||||
# Bluetooth power alerts
|
||||
services.poweralertd.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
orca-slicer
|
||||
betterdiscordctl
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue