-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
executable file
·47 lines (43 loc) · 1.38 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable/";
home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-darwin.url = "github:LnL7/nix-darwin";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home-manager, ... }@attrs:
let
username = "haruka";
mac-hostname = "alpha-mac";
in {
homeConfigurations.${username} =
home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."aarch64-linux";
modules = [
(import ./configs/home.nix { inherit username; })
{
home.sessionVariables = { ELECTRON_OZONE_PLATFORM_HINT = "auto"; };
targets.genericLinux.enable = true;
home.packages = with nixpkgs.legacyPackages."aarch64-linux"; [
librewolf
vscodium
qbittorrent
telegram-desktop
imagemagick
nixfmt-rfc-style
];
}
];
};
darwinConfigurations.${mac-hostname} = attrs.nix-darwin.lib.darwinSystem {
modules = [
home-manager.darwinModules.home-manager
(import ./configs/darwin.nix {
inherit mac-hostname;
inherit username;
})
];
};
};
}