2025-12-03 16:17:26 +00:00
|
|
|
########################################################################
|
|
|
|
|
# Template file used to set up git fetch. Run using 'nix-shell -p git' #
|
|
|
|
|
########################################################################
|
|
|
|
|
|
|
|
|
|
|
2025-12-02 22:58:56 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2025-05-08 19:23:55 +01:00
|
|
|
|
2025-12-02 21:35:16 +00:00
|
|
|
let
|
|
|
|
|
gitConfig = builtins.fetchGit {
|
|
|
|
|
url = "https://github.com/ediblerope/nixos-config";
|
|
|
|
|
ref = "main";
|
|
|
|
|
};
|
|
|
|
|
in
|
2025-12-02 20:35:16 +00:00
|
|
|
{
|
2025-12-04 11:44:28 +00:00
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
"${gitConfig}/git.nix"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
networking.hostName = "FredOS-Gaming";
|
|
|
|
|
|
|
|
|
|
# Enable flakes for nix-unstable integration
|
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
|
|
|
|
|
|
####################################
|
|
|
|
|
## Space for boot loader settings ##
|
|
|
|
|
####################################
|
2025-12-02 21:35:16 +00:00
|
|
|
system.stateVersion = "25.11";
|
2025-05-08 19:23:55 +01:00
|
|
|
}
|