2022-05-06 03:01:56 +00:00
|
|
|
{ config, lib, pkgs, ... }: {
|
2022-05-02 03:39:50 +00:00
|
|
|
|
2022-05-22 23:43:46 +00:00
|
|
|
imports = [
|
|
|
|
../modules/hardware
|
|
|
|
../modules/system
|
|
|
|
../modules/graphical
|
|
|
|
../modules/shell
|
|
|
|
../modules/gaming
|
|
|
|
../modules/applications
|
|
|
|
../modules/editor
|
|
|
|
../modules/mail/himalaya.nix
|
|
|
|
];
|
2022-05-02 03:39:50 +00:00
|
|
|
|
2022-05-22 23:43:46 +00:00
|
|
|
config = {
|
2022-05-02 03:39:50 +00:00
|
|
|
|
2022-05-22 23:43:46 +00:00
|
|
|
nix.extraOptions = "experimental-features = nix-command flakes";
|
|
|
|
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.useUserPackages = true;
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [ git vim wget curl ];
|
|
|
|
|
|
|
|
};
|
2022-05-02 03:39:50 +00:00
|
|
|
|
|
|
|
}
|