Compare commits
3 commits
0a2b769f33
...
8f05a1028a
Author | SHA1 | Date | |
---|---|---|---|
8f05a1028a | |||
06758d97ac | |||
7fa5e12ef4 |
4 changed files with 6 additions and 3 deletions
|
@ -650,7 +650,7 @@
|
|||
"inputs": {
|
||||
"flake-parts": "flake-parts",
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
"nixpkgs-unstable"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
# talhelper - A tool to help creating Talos kubernetes cluster
|
||||
talhelper = {
|
||||
url = "github:budimanjojo/talhelper";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
};
|
||||
|
||||
# Lix- Substitution of the Nix package manager, focused on correctness, usability, and growth – and committed to doing right by its community.
|
||||
|
|
|
@ -17,7 +17,7 @@ in
|
|||
warp-terminal = warpTerminalOverlay;
|
||||
termius = termiusOverlay;
|
||||
talosctl = talosctlOverlay;
|
||||
go = goOverlay;
|
||||
# go = goOverlay;
|
||||
|
||||
# The unstable nixpkgs set (declared in the flake inputs) will
|
||||
# be accessible through 'pkgs.unstable'
|
||||
|
|
|
@ -16,6 +16,9 @@
|
|||
};
|
||||
};
|
||||
|
||||
# For updating firmware on the Framework.
|
||||
services.fwupd.enable = true;
|
||||
|
||||
networking = {
|
||||
useDHCP = lib.mkDefault true;
|
||||
networkmanager.enable = true;
|
||||
|
|
Loading…
Reference in a new issue