Skip to content

Commit

Permalink
update to 24.05
Browse files Browse the repository at this point in the history
  • Loading branch information
adfaure committed Jun 7, 2024
1 parent 1af6180 commit ec30008
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 24 deletions.
16 changes: 8 additions & 8 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,7 +1,7 @@
{
description = "My personnal configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixos-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
my-dotfiles = {
url = "github:adfaure/dotfiles";
Expand All @@ -12,7 +12,7 @@
flake = false;
};
home-manager = {
url = "github:nix-community/home-manager/release-23.11";
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
emacs-overlay.url = "github:nix-community/emacs-overlay";
Expand Down
1 change: 1 addition & 0 deletions homes/base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
tldr
# better git diff
difftastic

];
};
}
25 changes: 14 additions & 11 deletions homes/graphical.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@
direnv
entr
pandoc
nvtop
nvtopPackages.full

# Nix file formating
nixfmt
nixfmt-classic

# GUI applications
calibre
Expand All @@ -94,15 +94,18 @@

mob
lazygit
# Using this for the moment ... https://github.com/NixOS/nixpkgs/issues/273611
(lib.throwIf (lib.versionOlder "1.4.16" pkgs.obsidian.version) "Obsidian no longer requires EOL Electron" (
pkgs.obsidian.override {
electron = pkgs.electron_25.overrideAttrs (_: {
preFixup = "patchelf --add-needed ${pkgs.libglvnd}/lib/libEGL.so.1 $out/bin/electron"; # NixOS/nixpkgs#272912
meta.knownVulnerabilities = []; # NixOS/nixpkgs#273611
});
}
))

obsidian

# # Using this for the moment ... https://github.com/NixOS/nixpkgs/issues/273611
# (lib.throwIf (lib.versionOlder "1.4.16" pkgs.obsidian.version) "Obsidian no longer requires EOL Electron" (
# pkgs.obsidian.override {
# electron = pkgs.electron_25.overrideAttrs (_: {
# preFixup = "patchelf --add-needed ${pkgs.libglvnd}/lib/libEGL.so.1 $out/bin/electron"; # NixOS/nixpkgs#272912
# meta.knownVulnerabilities = []; # NixOS/nixpkgs#273611
# });
# }
# ))
];
};
}
2 changes: 1 addition & 1 deletion nixos/profiles/common/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ with lib; {

gnupg.agent = {
enable = true;
pinentryFlavor = "qt";
# pinentryFlavor = "qt";
enableSSHSupport = true;
};

Expand Down
2 changes: 1 addition & 1 deletion nixos/profiles/graphical/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ with lib; {

# Needed for printer discovery
avahi.enable = true;
avahi.nssmdns = true;
avahi.nssmdns4 = true;
};

services.pipewire = {
Expand Down
2 changes: 1 addition & 1 deletion nixos/services/gnome/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ in {
cheese # webcam tool
gnome-music
gnome-terminal
gedit # text editor
# gedit # text editor
epiphany # web browser
geary # email reader
# evince # document viewer
Expand Down

0 comments on commit ec30008

Please sign in to comment.