actualiza home manager default y ordena allowUnfree en orden alfabetico
This commit is contained in:
parent
451fbf131c
commit
1433a1f96b
18
flake.nix
18
flake.nix
|
@ -13,23 +13,27 @@
|
||||||
|
|
||||||
outputs = {self, nixpkgs, unstable, home-manager, nur, hm-isolation, ...}:
|
outputs = {self, nixpkgs, unstable, home-manager, nur, hm-isolation, ...}:
|
||||||
let
|
let
|
||||||
|
system = "x86_64-linux";
|
||||||
|
|
||||||
packages = import ./pkgs;
|
packages = import ./pkgs;
|
||||||
|
pkgs = import nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations.posixlycorrect = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.posixlycorrect = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
inherit system;
|
||||||
|
|
||||||
modules = [ ( import ./base ) ];
|
modules = [ ( import ./base ) ];
|
||||||
};
|
};
|
||||||
|
|
||||||
homeConfigurations."fabian@posixlycorrect" = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations."fabian@posixlycorrect" = home-manager.lib.homeManagerConfiguration {
|
||||||
system = "x86_64-linux";
|
inherit pkgs;
|
||||||
configuration = import ./home {inherit self nixpkgs unstable hm-isolation; };
|
|
||||||
username = "fabian";
|
modules = [ (import ./home {inherit self nixpkgs unstable hm-isolation; }) ];
|
||||||
homeDirectory = "/home/fabian";
|
|
||||||
stateVersion = "21.11"; # No tocar
|
|
||||||
};
|
};
|
||||||
|
|
||||||
packages.x86_64-linux = packages nixpkgs.legacyPackages.x86_64-linux;
|
packages."${system}" = packages pkgs;
|
||||||
|
|
||||||
overlay = self: super: {
|
overlay = self: super: {
|
||||||
local = packages super;
|
local = packages super;
|
||||||
|
|
|
@ -2,17 +2,18 @@
|
||||||
with lib;
|
with lib;
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||||
"vmware-horizon-client"
|
|
||||||
"steam-original"
|
|
||||||
"steam"
|
|
||||||
"discord"
|
"discord"
|
||||||
"pycharm-professional"
|
"pycharm-professional"
|
||||||
|
"quartus-prime-lite-unwrapped"
|
||||||
"rar"
|
"rar"
|
||||||
"spotify"
|
"spotify"
|
||||||
"spotify-unwrapped"
|
"spotify-unwrapped"
|
||||||
|
"steam"
|
||||||
|
"steam-original"
|
||||||
|
"steam-run"
|
||||||
"teams"
|
"teams"
|
||||||
"zoom"
|
|
||||||
"vscode-extension-ms-vscode-cpptools"
|
"vscode-extension-ms-vscode-cpptools"
|
||||||
"quartus-prime-lite-unwrapped"
|
"vmware-horizon-client"
|
||||||
|
"zoom"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue