Fix timezone, remove redundant comments
This commit is contained in:
parent
9e715b301f
commit
b43578b9bd
14
flake.nix
14
flake.nix
|
@ -4,18 +4,6 @@
|
|||
# https://grahamc.com/blog/erase-your-darlings/
|
||||
# https://github.com/Misterio77/nix-starter-configs
|
||||
|
||||
## Update Packages
|
||||
# nix flake update
|
||||
|
||||
## Clean up nix-store
|
||||
# nix-store --delete ...
|
||||
|
||||
## Encrypted Home Directory
|
||||
# https://github.com/nix-community/home-manager/issues/3415
|
||||
|
||||
## Declarative Disk Partioning
|
||||
# https://github.com/nix-community/nixos-anywhere-examples/blob/main/configuration.nix
|
||||
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
|
||||
|
@ -27,6 +15,7 @@
|
|||
disko.url = "github:nix-community/disko/latest";
|
||||
disko.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
# Encrypted home: https://github.com/nix-community/home-manager/pull/6981
|
||||
home-manager.url = "github:nix-community/home-manager/release-25.05";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
|
@ -113,6 +102,7 @@
|
|||
networking.hostId = "f55542ee";
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
time.timeZone = "America/Chicago";
|
||||
}
|
||||
|
||||
./systems/ll-latitude-e5591/configuration.nix
|
||||
|
|
Loading…
Reference in New Issue