feat: Update flake inputs

This commit is contained in:
uttarayan21
2025-03-05 15:29:03 +05:30
parent ae75406863
commit 8024fd2c78
5 changed files with 131 additions and 116 deletions

View File

@@ -3,11 +3,13 @@
pkgs,
...
}: {
imports = [./services];
imports = [./services ./homebrew.nix];
# environment.systemPackages = with pkgs; [nix neovim];
nix = {
enable = true;
settings = {
# ids.gids.nixbld = 30000;
experimental-features = "nix-command flakes auto-allocate-uids";
max-jobs = 8;
trusted-users = ["root" "fs0c131y"];
@@ -59,7 +61,7 @@
programs.fish.enable = true;
# services.nix-daemon.enable = true;
system.stateVersion = 4;
system.stateVersion = 5;
system.keyboard.enableKeyMapping = true;
system.keyboard.remapCapsLockToControl = true;

16
darwin/kuro/homebrew.nix Normal file
View File

@@ -0,0 +1,16 @@
{...}: {
homebrew = {
enable = true;
brews = [
];
casks = [
"firefox"
"librewolf"
"raycast"
"kunkun" # Soon
"lunar"
"virtual-desktop-streamer"
"1password"
];
};
}