mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
26 lines
489 B
Nix
26 lines
489 B
Nix
{ config, lib, pkgs, ... }: {
|
|
|
|
imports = [
|
|
../modules/hardware
|
|
../modules/system
|
|
../modules/graphical
|
|
../modules/shell
|
|
../modules/gaming
|
|
../modules/applications
|
|
../modules/editor
|
|
../modules/mail/himalaya.nix
|
|
];
|
|
|
|
config = {
|
|
|
|
nix.extraOptions = "experimental-features = nix-command flakes";
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
|
|
environment.systemPackages = with pkgs; [ git vim wget curl ];
|
|
|
|
};
|
|
|
|
}
|