Skip to content

Instantly share code, notes, and snippets.

@euank
Created September 29, 2020 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save euank/fd4bb3cfb6eee8d0f71b4e727ca0551a to your computer and use it in GitHub Desktop.
Save euank/fd4bb3cfb6eee8d0f71b4e727ca0551a to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }:
let
...
in
{
imports =
[
./hardware-configuration.nix
<home-manager/nixos>
];
users.users.esk = {
# ....
};
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
home-manager.users.esk = import /home/esk/dotfiles/nixos/home.nix;
}
{
programs.alacritty = {
enable = true;
settings = {
# ...
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment