Skip to content

Commit

Permalink
Migrate from 23.05 -> 23.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigmanificient committed Dec 21, 2023
1 parent 0f05fb3 commit 6496489
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 32 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
Expand Up @@ -2,14 +2,14 @@
description = "Sigma dotfiles";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";

ecsls.url = "github:Sigmapitech-meta/ecsls";
hosts.url = "github:StevenBlack/hosts";
nixos-hardware.url = "github:NixOS/nixos-hardware";

home-manager = {
url = "github:nix-community/home-manager/release-23.05";
url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
Expand Down
4 changes: 2 additions & 2 deletions home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@

packages =
let
figma-linux-wrap = pkgs.figma-linux.overrideAttrs (prev: {
nativeBuildInputs = prev.nativeBuildInputs ++ [ pkgs.wrapGAppsHook ];
figma-linux-wrap = with pkgs; figma-linux.overrideAttrs (prev: {
nativeBuildInputs = prev.nativeBuildInputs ++ [ wrapGAppsHook ];
});

in
Expand Down
2 changes: 1 addition & 1 deletion home/zsh/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
enableSyntaxHighlighting = true;
syntaxHighlighting.enable = true;

plugins = [
{
Expand Down
30 changes: 11 additions & 19 deletions system/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,6 @@
allowUnfree = true;
pulseaudio = true;
};

overlays = [
(_: super: {
nix-direnv = super.nix-direnv.override {
enableFlakes = true;
};
})
];
};

networking = {
Expand Down Expand Up @@ -157,7 +149,6 @@
windowManager.qtile = {
enable = true;
backend = "x11";
extraPackages = pypkgs: [ pypkgs.qtile-extras ];
};
};

Expand All @@ -171,8 +162,11 @@
initialPassword = "hello";
};

fonts.fonts = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
fonts.packages = with pkgs; let
jetbrains-mono-nerd-font = (nerdfonts.override
{ fonts = [ "JetBrainsMono" ]; });
in [
jetbrains-mono-nerd-font
dina-font
fira-code
fira-code-symbols
Expand Down Expand Up @@ -234,13 +228,11 @@
};

qt.style = "adwaita-dark";
xdg = {
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
};
xdg.portal = {
enable = true;
config.common.default = "*";
extraPortals = [
pkgs.xdg-desktop-portal-kde
];
};
}

0 comments on commit 6496489

Please sign in to comment.