Skip to content

Commit

Permalink
Update to 24.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystucki committed Dec 1, 2024
1 parent 09baeb2 commit 720d7ba
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 63 deletions.
9 changes: 3 additions & 6 deletions common/nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
telegram-desktop
wl-clipboard
xsel
gnome.gnome-tweaks
gnome-tweaks
];
};

Expand Down Expand Up @@ -113,8 +113,6 @@
"hmac-sha2-512"
];

# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
Expand Down Expand Up @@ -145,10 +143,9 @@
hardware.i2c.enable = true;

# Enable OpenGL
hardware.opengl = {
hardware.graphics = {
enable = true;
driSupport = true;
driSupport32Bit = true;
enable32Bit = true;
};

fonts.packages = with pkgs; [
Expand Down
6 changes: 3 additions & 3 deletions components/common-apps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
blanket
evolution
gnome-decoder
gnome.gnome-calendar
gnome.gnome-characters
gnome.gnome-contacts
gnome-calendar
gnome-characters
gnome-contacts
handbrake
imagemagick
inkscape
Expand Down
23 changes: 8 additions & 15 deletions components/dotnet.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
{ pkgs, pkgs-unstable, ... }:
{ pkgs-unstable, ... }:

with pkgs-unstable;
with dotnetCorePackages;
{
home.packages =
with pkgs;
with dotnetCorePackages;
[
(combinePackages [
dotnet-sdk_6
dotnet-aspnetcore_6
dotnet-sdk_7
dotnet-aspnetcore_7
pkgs-unstable.dotnet-sdk_8
pkgs-unstable.dotnet-aspnetcore_8
])
]
++ lib.optionals (!stdenv.isDarwin) [ pkgs-unstable.jetbrains.rider ];
home.packages = [
(combinePackages [
sdk_8_0
])
] ++ lib.optionals (!stdenv.isDarwin) [ jetbrains.rider ];
}
78 changes: 41 additions & 37 deletions flake.lock

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

7 changes: 5 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
url = "github:numtide/flake-utils";
};
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-24.05";
url = "github:nixos/nixpkgs/nixos-24.11";
};
nixpkgs-unstable = {
url = "github:nixos/nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
color-scheme-sync = {
Expand All @@ -39,6 +39,9 @@
config = {
allowUnfree = true;
input-fonts.acceptLicense = true;
permittedInsecurePackages = [
"dotnet-sdk-7.0.410"
];
};
pkgs = import inputs.nixpkgs { inherit system config; };
pkgs-unstable = import inputs.nixpkgs-unstable { inherit system config; };
Expand Down

0 comments on commit 720d7ba

Please sign in to comment.