Skip to content

Commit

Permalink
WIP: Update to Nixos 23.11
Browse files Browse the repository at this point in the history
  • Loading branch information
TLATER committed Nov 30, 2023
1 parent 444a85b commit a8da5b6
Show file tree
Hide file tree
Showing 13 changed files with 212 additions and 182 deletions.
83 changes: 41 additions & 42 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

inputs = {
# NixOS related inputs
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-unfree = {
url = "github:numtide/nixpkgs-unfree";
Expand All @@ -29,7 +29,7 @@
};

aagl = {
url = "github:ezKEa/aagl-gtk-on-nix?rev=0c9d93bdb311f7948f9fb0e98d869316d78eec12";
url = "github:ezKEa/aagl-gtk-on-nix";
inputs.nixpkgs.follows = "nixpkgs";
};

Expand All @@ -43,7 +43,7 @@

# home-manager related inputs
home-manager = {
url = "github:nix-community/home-manager/release-23.05";
url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
nurpkgs.url = "github:nix-community/NUR";
Expand Down
2 changes: 1 addition & 1 deletion home-config/config/tty-applications/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

home.packages = with pkgs; [
bat
exa
eza
fd
ripgrep
screen
Expand Down
5 changes: 3 additions & 2 deletions home-config/config/tty-applications/zsh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ in {

enableAutosuggestions = true;
enableCompletion = true;
enableSyntaxHighlighting = true;
enableVteIntegration = true;
defaultKeymap = "emacs";

syntaxHighlighting.enable = true;

plugins = [
{
name = "bgnotify";
Expand All @@ -66,7 +67,7 @@ in {
];

shellAliases = {
"ls" = "exa";
"ls" = "eza";
"winetricks" = "winetricks -q";
"pbcopy" = "xsel --clipboard --input";
"pbpaste" = "xsel --clipboard";
Expand Down
4 changes: 2 additions & 2 deletions modules/cursor-theme.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
pkgs,
...
}: let
inherit (lib.types) string nullOr number;
inherit (lib.types) str nullOr number;
in {
options.theming = {
cursor = {
theme = lib.mkOption {
default = null;
type = nullOr string;
type = nullOr str;
description = "The default cursor theme to use. Package must be installed separately";
};

Expand Down
Loading

0 comments on commit a8da5b6

Please sign in to comment.