suck my ball

This commit is contained in:
Ich lebe mietfrei in deinem Apfel 2025-07-25 14:02:41 +02:00
parent 66a49eb513
commit 509f16b469
2 changed files with 60 additions and 59 deletions

View file

@ -27,6 +27,7 @@
... ...
} @ inputs: { } @ inputs: {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra; formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
formatter.aarch64-darwin = nixpkgs.legacyPackages.aarch64-darwin.alejandra;
nixosConfigurations.goingmerry = nixpkgs.lib.nixosSystem { nixosConfigurations.goingmerry = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;}; specialArgs = {inherit inputs;};
modules = [ modules = [
@ -63,7 +64,7 @@
{ {
nix-homebrew = { nix-homebrew = {
enable = true; enable = true;
user = "admin"; user = "ichlebemietfreiindeinemapfel";
}; };
} }
]; ];

View file

@ -1,9 +1,9 @@
{ {
config, config,
pkgs, pkgs,
... ...
}: { }: {
system.primaryUser = "admin"; system.primaryUser = "ichlebemietfreiindeinemapfel";
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim vim
@ -62,5 +62,5 @@
system.stateVersion = 6; system.stateVersion = 6;
# The platform the configuration will be used on. # The platform the configuration will be used on.
nixpkgs.hostPlatform = "x86_64-darwin"; nixpkgs.hostPlatform = "aarch64-darwin";
} }