Skip to content

Commit

Permalink
Revert 23.11 back to 23.05
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigmanificient committed Jan 13, 2024
1 parent e1618b5 commit 80136fb
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 13 deletions.
4 changes: 2 additions & 2 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.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";

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

home-manager = {
url = "github:nix-community/home-manager/release-23.11";
url = "github:nix-community/home-manager/release-23.05";
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 = with pkgs; figma-linux.overrideAttrs (prev: {
nativeBuildInputs = prev.nativeBuildInputs ++ [ wrapGAppsHook ];
figma-linux-wrap = pkgs.figma-linux.overrideAttrs (prev: {
nativeBuildInputs = prev.nativeBuildInputs ++ [ pkgs.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;
syntaxHighlighting.enable = true;
enableSyntaxHighlighting = true;

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

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

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

Expand Down Expand Up @@ -247,11 +256,13 @@
};

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

0 comments on commit 80136fb

Please sign in to comment.