25 lines
570 B
Nix
25 lines
570 B
Nix
########################################################################
|
|
# Template file used to set up git fetch. Run using 'nix-shell -p git' #
|
|
########################################################################
|
|
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
gitConfig = builtins.fetchGit {
|
|
url = "https://github.com/ediblerope/nixos-config";
|
|
ref = "main";
|
|
};
|
|
in
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
"${gitConfig}/git.nix"
|
|
];
|
|
|
|
networking.hostName = "FredOS-Gaming";
|
|
|
|
## Space for boot loader settings
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|