channel update to 23.11

This commit is contained in:
Sven Vogel 2023-12-02 15:48:12 +01:00
parent cc08b0d2f2
commit ea0697fc04
3 changed files with 17 additions and 15 deletions

View File

@ -1,7 +1,7 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
let let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz"; home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz";
# python packages to include with python3 # python packages to include with python3
python-packages = import ./python-packages.nix; python-packages = import ./python-packages.nix;
in in
@ -20,6 +20,14 @@ in
./dev ./dev
]; ];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It's perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment?
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.opengl.enable = true; hardware.opengl.enable = true;
# for rotation sensors # for rotation sensors
@ -199,14 +207,6 @@ in
# Or disable the firewall altogether. # Or disable the firewall altogether.
# networking.firewall.enable = false; # networking.firewall.enable = false;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It's perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment?
environment.sessionVariables = rec { environment.sessionVariables = rec {
_JAVA_OPTIONS = "-Dawt.useSystemAAFontSettings=lcd"; _JAVA_OPTIONS = "-Dawt.useSystemAAFontSettings=lcd";

View File

@ -1,10 +1,10 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
fonts = { fonts = {
enableDefaultFonts = true; enableDefaultPackages = true;
# extra font packages # extra font packages
fonts = with pkgs; [ packages = with pkgs; [
corefonts corefonts
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk

View File

@ -54,7 +54,7 @@
figlet figlet
cowsay cowsay
cmatrix cmatrix
exa # FIXME: use stable eza version when available eza
btop btop
htop htop
tmux tmux
@ -180,9 +180,11 @@
''; '';
enableCompletion = true; enableCompletion = true;
enableAutosuggestions = true; enableAutosuggestions = true;
enableSyntaxHighlighting = true; syntaxHighlighting = {
enable = true;
};
shellAliases = { shellAliases = {
ls = "exa --icons"; ls = "eza --icons";
}; };
history = { history = {
size = 10000; size = 10000;