Skip to content

Commit

Permalink
amd 238 current 2024-11-29 07:56:56 24.11.20241129.3d7df75 6.6.60 *
Browse files Browse the repository at this point in the history
  • Loading branch information
dezren39 committed Nov 29, 2024
1 parent 857828b commit f6b4d8b
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 9 deletions.
36 changes: 29 additions & 7 deletions flake.lock

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

7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,15 @@ rec {
};
arunoruto.url = "github:arunoruto/flake";
unattended-installer.url = "github:developing-today-forks/nixos-unattended-installer";

# nixpkgs-inner.url = "github:developing-today-forks/nixpkgs";
nixpkgs.url = "github:developing-today-forks/nixpkgs";
# nixpkgs.url = "github:dezren39/nixpkgs";
# nixpkgs.url = "github:NixOS/nixpkgs";
# nixpkgs = {
# url = "github:numtide/nixpkgs-unfree?ref=nixos-unstable";
# inputs.nixpkgs.follows = "nixpkgs-inner";
# };
# nixpkgs-stable.url = "github:developing-today-forks/nixpkgs";
# nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
Expand Down Expand Up @@ -207,7 +213,6 @@ rec {
# };
};
nixConfig = {
# allow-unfree = true;
# unfortunately can't import, but this should be equal to flake.nix
experimental-features = [
"auto-allocate-uids"
Expand Down
11 changes: 10 additions & 1 deletion nixos/environment/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@
}:
{
environment = {
sessionVariables.NIXOS_OZONE_WL = "1"; # This variable fixes electron apps in wayland
sessionVariables = {
NIXOS_OZONE_WL = "1"; # This variable fixes electron apps in wayland
NIXPKGS_ALLOW_UNFREE = "1";
XDG_CACHE_HOME = "$HOME/.cache";
# XDG_CONFIG_DIRS = "/etc/xdg";
XDG_CONFIG_HOME = "$HOME/.config";
# XDG_DATA_DIRS = "/usr/local/share/:/usr/share/";
XDG_DATA_HOME = "$HOME/.local/share";
XDG_STATE_HOME = "$HOME/.local/state";
};
variables = {
EDITOR = "nvim";
NIX_REMOTE = "daemon";
Expand Down

0 comments on commit f6b4d8b

Please sign in to comment.