add openmodelica
This commit is contained in:
48
home.nix
48
home.nix
@@ -1,4 +1,9 @@
|
||||
{ inputs, split-monitor-workspaces, pkgs, ... }:
|
||||
{
|
||||
inputs,
|
||||
split-monitor-workspaces,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
imports = [
|
||||
@@ -20,26 +25,29 @@
|
||||
"Xft.dpi" = 172;
|
||||
};
|
||||
|
||||
home.packages = let
|
||||
fonts = import ./pkgs/fonts.nix { inherit pkgs; };
|
||||
minecraft = import ./pkgs/minecraft.nix { inherit pkgs; };
|
||||
misc = import ./pkgs/misc.nix { inherit pkgs; };
|
||||
network = import ./pkgs/network.nix { inherit pkgs; };
|
||||
programming = import ./pkgs/programming.nix { inherit pkgs; };
|
||||
tools = import ./pkgs/tools.nix { inherit pkgs; };
|
||||
util = import ./pkgs/util.nix { inherit pkgs; };
|
||||
games = import ./pkgs/games.nix { inherit pkgs; };
|
||||
unstable = import (builtins.fetchTarball {
|
||||
url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
|
||||
sha256 = "1ijgd8hy1ii0k0s48yhnzw09c7zdjnp1fq8wfj7jgajwmlfwy3xg";
|
||||
}) { system = "x86_64-linux"; };
|
||||
unstables = import ./pkgs/unstable.nix {
|
||||
inherit pkgs;
|
||||
inherit unstable;
|
||||
};
|
||||
nixpkgs.config.permittedInsecurePackages = [ "qtwebkit-5.212.0-alpha4" ];
|
||||
|
||||
in fonts ++ minecraft ++ misc ++ network ++ programming ++ tools ++ util
|
||||
++ games ++ unstables;
|
||||
home.packages =
|
||||
let
|
||||
fonts = import ./pkgs/fonts.nix { inherit pkgs; };
|
||||
minecraft = import ./pkgs/minecraft.nix { inherit pkgs; };
|
||||
misc = import ./pkgs/misc.nix { inherit pkgs; };
|
||||
network = import ./pkgs/network.nix { inherit pkgs; };
|
||||
programming = import ./pkgs/programming.nix { inherit pkgs; };
|
||||
tools = import ./pkgs/tools.nix { inherit pkgs; };
|
||||
util = import ./pkgs/util.nix { inherit pkgs; };
|
||||
games = import ./pkgs/games.nix { inherit pkgs; };
|
||||
unstable = import (builtins.fetchTarball {
|
||||
url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
|
||||
sha256 = "1ijgd8hy1ii0k0s48yhnzw09c7zdjnp1fq8wfj7jgajwmlfwy3xg";
|
||||
}) { system = "x86_64-linux"; };
|
||||
unstables = import ./pkgs/unstable.nix {
|
||||
inherit pkgs;
|
||||
inherit unstable;
|
||||
};
|
||||
|
||||
in
|
||||
fonts ++ minecraft ++ misc ++ network ++ programming ++ tools ++ util ++ games ++ unstables;
|
||||
|
||||
programs.direnv.enable = true;
|
||||
programs.direnv.nix-direnv.enable = true;
|
||||
|
||||
Reference in New Issue
Block a user