Update flake.nix

This commit is contained in:
Aaron Honeycutt 2023-10-03 16:37:52 +00:00
parent 95e5ffd128
commit c4f7ceed57

View file

@ -1,5 +1,5 @@
{ {
description = "thelio-b1"; description = "Joker";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05"; nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
@ -7,7 +7,7 @@
outputs = { self, nixpkgs, ... }@inputs: { outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations = { nixosConfigurations = {
"thelio-b1" = nixpkgs.lib.nixosSystem { "joker" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
# Import the configuration.nix we used before, so that the old configuration file can still take effect. # Import the configuration.nix we used before, so that the old configuration file can still take effect.
@ -47,7 +47,7 @@
}; };
networking = { networking = {
hostName = "thelio-b1"; hostName = "joker";
networkmanager.enable = true; networkmanager.enable = true;
}; };