aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/home-manager.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/users/fcuny/home-manager.nix')
-rw-r--r--nix/users/fcuny/home-manager.nix28
1 files changed, 18 insertions, 10 deletions
diff --git a/nix/users/fcuny/home-manager.nix b/nix/users/fcuny/home-manager.nix
index e975c37..e450c24 100644
--- a/nix/users/fcuny/home-manager.nix
+++ b/nix/users/fcuny/home-manager.nix
@@ -1,26 +1,34 @@
{ darwin, systemName, ... }:
-{ lib, pkgs, ... }: {
+{ lib, pkgs, ... }:
+{
home.stateVersion = "23.05";
xdg.enable = true;
- imports = [ ./shell.nix ./ssh.nix ./git.nix ]
- ++ lib.optionals darwin [ ./1password.nix ./go.nix ]
+ imports =
+ [
+ ./shell.nix
+ ./ssh.nix
+ ./git.nix
+ ]
+ ++ lib.optionals darwin [
+ ./1password.nix
+ ./go.nix
+ ]
++ lib.optionals (systemName == "hq-c02fk3q7md6t") [ ./work.nix ];
- home.packages = with pkgs;
+ home.packages =
+ with pkgs;
[
# encryption
age
- # nix
nil # nix lsp
- nix-direnv
- nixd
- nixfmt-classic
- nixpkgs-fmt
- ] ++ (lib.optionals (darwin) [
+ nix-direnv # integration with direnv
+ nixfmt-rfc-style # new formatter
+ ]
+ ++ (lib.optionals (darwin) [
# media
mpv
ffmpeg