mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
Added a let expression in the macos home.nix
This commit is contained in:
parent
0efda1f79b
commit
278cdc80e4
@ -22,6 +22,7 @@
|
||||
syncthing # ToDo: configure it ig
|
||||
cmatrix
|
||||
cava
|
||||
spicetify-cli
|
||||
# Dev CLI
|
||||
doxygen
|
||||
autoconf
|
||||
@ -33,6 +34,7 @@
|
||||
# GUI apps
|
||||
vscode
|
||||
bitwarden-desktop
|
||||
kitty # Terminal emulator but needs a GUI
|
||||
|
||||
# Go
|
||||
go # The main compiler
|
||||
@ -51,9 +53,10 @@
|
||||
# Python
|
||||
python312 # The main interpreter
|
||||
pip # The package manager
|
||||
|
||||
kitty
|
||||
|
||||
];
|
||||
|
||||
# Git config
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,14 +1,15 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Refer to the nixOS host for info about home-manager
|
||||
import ../common/home.nix {
|
||||
let
|
||||
commonHome = import ../common/home.nix {
|
||||
inherit config pkgs inputs;
|
||||
username = "alex";
|
||||
homeDir = "/Users/alex";
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
in
|
||||
{
|
||||
# Refer to the nixOS host for info about home-manager
|
||||
inherit commonHome;
|
||||
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
@ -19,3 +20,4 @@
|
||||
skhd
|
||||
#borders
|
||||
];
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user