This commit is contained in:
Kyler Olsen 2025-05-07 15:56:54 -06:00
parent fc99ffce87
commit 44f657bc7c
2 changed files with 22 additions and 1 deletions

View File

@ -14,7 +14,7 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nixos"; # Define your hostname. networking.hostName = "nixos-ytd"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary # Configure network proxy if necessary

21
flake.nix Normal file
View File

@ -0,0 +1,21 @@
{
description = "Kyler Olsen's flake";
input = {
nixpkgs.url = "nixpkgs/nixos-24.11";
};
output = { self, nixpkgs, ... } :
let
lib = nixpkgs.lib;
in {
nixosConfigurations = {
nixos-ytd = lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
};
}