Skip to content

Instantly share code, notes, and snippets.

@vikanezrimaya
Created August 17, 2020 19:17
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 vikanezrimaya/d9aa448dc7a6d7109597bba454a56229 to your computer and use it in GitHub Desktop.
Save vikanezrimaya/d9aa448dc7a6d7109597bba454a56229 to your computer and use it in GitHub Desktop.
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ config, pkgs, ... }:
let
home-manager = builtins.fetchGit {
url = "https://github.com/rycee/home-manager.git";
rev = "dd94a849df69fe62fe2cb23a74c2b9330f1189ed"; # CHANGEME
ref = "release-18.09";
};
in {
imports = [
# Include the results of the hardware scan.
/etc/nixos/hardware-configuration.nix
(import "${home-manager}/nixos")
];
...
...
...
...
#console.colors = [ "3A3C43" "BE3E48" "869A3A" "C4A535"
# "4E76A1" "855B8D" "568EA3" "B8BCB9"
# "888987" "FB001E" "0E712E" "C37033"
# "176CE3" "FB0067" "2D6F6C" "FCFFB8" ];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
home-manager.users.my_username = { ... };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment