Reduce number of channels used

This was a fix attempt before I discovered that the issue was that
nixos-install uses the root user's channels. Doesn't hurt anyways.
This commit is contained in:
Geoffrey Frogeye 2023-11-28 00:33:03 +01:00
parent bae9c4c524
commit 7e49ed2e19
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
5 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{ pkgs, config, ... }:
{
imports = [
<home-manager/nixos>
"${builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz"}/nixos"
];
users.users.geoffrey = {

View file

@ -7,5 +7,6 @@
./common.nix
./desktop.nix
./wireless.nix
"${builtins.fetchTarball "https://github.com/nix-community/disko/archive/3cb78c93e6a02f494aaf6aeb37481c27a2e2ee22.tar.gz"}/module.nix"
];
}