Skip to content

Commit

Permalink
update to nixos 24.05
Browse files Browse the repository at this point in the history
  • Loading branch information
tejing1 committed Aug 20, 2024
1 parent edd98ad commit 4f306bc
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 22 deletions.
28 changes: 14 additions & 14 deletions flake.lock

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

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";

home-manager.url = "github:nix-community/home-manager/release-23.11";
home-manager.url = "github:nix-community/home-manager/release-24.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";

nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
Expand Down
2 changes: 0 additions & 2 deletions homeConfigurations/tejing/media/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
inherit (pkgs)
zathura
feh
youtube-dl
mkvtoolnix
ffmpeg
;
Expand All @@ -17,7 +16,6 @@
} (builtins.readFile ./yt-dlp)).pkg;
};
programs.mpv.enable = true;
programs.mpv.package = pkgs.wrapMpv (pkgs.mpv-unwrapped.override { nv-codec-headers = pkgs.nv-codec-headers-11; }) {};
programs.mpv.config = {
osc = false;
hwdec = "auto-safe";
Expand Down
2 changes: 1 addition & 1 deletion homeModules/tejing/shell/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ in
programs.dircolors.enableZshIntegration = true;
programs.starship.enableZshIntegration = false;
programs.zsh.shellAliases = config.programs.fish.shellAliases;
programs.zsh.enableAutosuggestions = true;
programs.zsh.autosuggestion.enable = true;
programs.zsh.defaultKeymap = "emacs";
programs.zsh.initExtraFirst = ''
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
Expand Down
2 changes: 1 addition & 1 deletion nixosConfigurations/tejingdesk/xserver.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
services.xserver.enable = true;

# Disable Caps Lock
services.xserver.xkbOptions = "caps:none";
services.xserver.xkb.options = "caps:none";

# Use proprietary nvidia graphics driver
nixpkgs.config.allowUnfree = true;
Expand Down
4 changes: 2 additions & 2 deletions nixosModules/users/tejing/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ in

# Enable touchpad support.
# I actually just need this for the mouse acceleration settings that I'm used to.
services.xserver.libinput.enable = true;
services.xserver.libinput.mouse.accelSpeed = "0.6";
services.libinput.enable = true;
services.libinput.mouse.accelSpeed = "0.6";

programs.dconf.enable = true;

Expand Down

0 comments on commit 4f306bc

Please sign in to comment.