feat: add nix-ld and nix-alien
This commit is contained in:
parent
ae6da0c7f0
commit
218f6be16a
2 changed files with 11 additions and 2 deletions
|
|
@ -104,6 +104,10 @@
|
||||||
gnome-console
|
gnome-console
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.nix-ld = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver.xkb.layout = "fr";
|
services.xserver.xkb.layout = "fr";
|
||||||
services.xserver.xkb.options = "eurosign:e,caps:escape";
|
services.xserver.xkb.options = "eurosign:e,caps:escape";
|
||||||
|
|
|
||||||
9
home.nix
9
home.nix
|
|
@ -4,7 +4,11 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
|
nix-alien-pkgs = import (
|
||||||
|
builtins.fetchTarball "https://github.com/thiagokokada/nix-alien/tarball/master"
|
||||||
|
) { };
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
<home-manager/nixos>
|
<home-manager/nixos>
|
||||||
|
|
@ -14,7 +18,7 @@
|
||||||
home-manager.users.heroz =
|
home-manager.users.heroz =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; with nix-alien-pkgs; [
|
||||||
brave
|
brave
|
||||||
nixfmt-rfc-style
|
nixfmt-rfc-style
|
||||||
nixd
|
nixd
|
||||||
|
|
@ -29,6 +33,7 @@
|
||||||
zoxide
|
zoxide
|
||||||
iperf
|
iperf
|
||||||
lazydocker
|
lazydocker
|
||||||
|
nix-alien
|
||||||
];
|
];
|
||||||
|
|
||||||
# Fix duplicate brave entry in gnome apps
|
# Fix duplicate brave entry in gnome apps
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue