system: change channels
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: let
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
|
||||
laptop = false;
|
||||
in {
|
||||
imports = [
|
||||
@ -17,7 +17,7 @@ in {
|
||||
(import ../../user/common.nix {
|
||||
inherit config;
|
||||
inherit pkgs;
|
||||
inherit pkgs-stable;
|
||||
inherit pkgs-unstable;
|
||||
inherit pkgs-fixed;
|
||||
inherit lib;
|
||||
inherit inputs;
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: let
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
|
||||
laptop = true;
|
||||
in {
|
||||
imports = [
|
||||
@ -15,7 +15,7 @@ in {
|
||||
(import ../../user/common.nix {
|
||||
inherit config;
|
||||
inherit pkgs;
|
||||
inherit pkgs-stable;
|
||||
inherit pkgs-unstable;
|
||||
inherit pkgs-fixed;
|
||||
inherit lib;
|
||||
inherit inputs;
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: let
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
|
||||
laptop = false;
|
||||
in {
|
||||
imports = [
|
||||
@ -17,7 +17,7 @@ in {
|
||||
(import ../../user/common.nix {
|
||||
inherit config;
|
||||
inherit pkgs;
|
||||
inherit pkgs-stable;
|
||||
inherit pkgs-unstable;
|
||||
inherit pkgs-fixed;
|
||||
inherit lib;
|
||||
inherit inputs;
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ config, pkgs, pkgs-stable, pkgs-fixed, lib, inputs, ...}: let
|
||||
{ config, pkgs, pkgs-unstable, pkgs-fixed, lib, inputs, ...}: let
|
||||
laptop = true;
|
||||
in {
|
||||
imports = [
|
||||
@ -15,7 +15,7 @@ in {
|
||||
(import ../../user/common.nix {
|
||||
inherit config;
|
||||
inherit pkgs;
|
||||
inherit pkgs-stable;
|
||||
inherit pkgs-unstable;
|
||||
inherit pkgs-fixed;
|
||||
inherit lib;
|
||||
inherit inputs;
|
||||
|
@ -16,7 +16,7 @@
|
||||
};
|
||||
open = false;
|
||||
nvidiaSettings = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
|
||||
prime = lib.optionalAttrs config.host.laptop {
|
||||
intelBusId = "PCI:0:2:0";
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ pkgs, inputs, ... }: {
|
||||
{ pkgs-unstable, inputs, ... }: {
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment.systemPackages = with pkgs-unstable; [
|
||||
file
|
||||
tree
|
||||
wget
|
||||
@ -20,7 +20,7 @@
|
||||
|
||||
fonts = {
|
||||
enableDefaultPackages = false;
|
||||
packages = with pkgs; [
|
||||
packages = with pkgs-unstable; [
|
||||
jetbrains-mono # Best mono font
|
||||
noto-fonts-cjk-sans # Japanese
|
||||
powerline-symbols # Console decoration
|
||||
|
Reference in New Issue
Block a user