Remove unused packages, switch to bash as login shell to fix environment
This commit is contained in:
parent
43a59ea1c8
commit
b6977b68eb
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,6 +1,3 @@
|
|||
[submodule "private"]
|
||||
path = private
|
||||
url = git@github.com:artemist/nixos-config-private.git
|
||||
[submodule "externals/nixos-rocm"]
|
||||
path = externals/nixos-rocm
|
||||
url = https://github.com/nixos-rocm/nixos-rocm.git
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
pkgs.android-udev-rules
|
||||
pkgs.openocd
|
||||
(pkgs.callPackage ./externals/rules/adafruit.nix { })
|
||||
(pkgs.callPackage ./externals/rules/ds4drv.nix { })
|
||||
(pkgs.callPackage ./externals/rules/fpga.nix { })
|
||||
(pkgs.callPackage ./externals/rules/limesuite.nix { })
|
||||
(pkgs.callPackage ./externals/rules/cm-rgb.nix { })
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
./packages.nix
|
||||
./fonts.nix
|
||||
./ssh.nix
|
||||
./rocm.nix
|
||||
];
|
||||
|
||||
nix = {
|
||||
|
@ -182,7 +181,6 @@
|
|||
isNormalUser = true;
|
||||
description = "Artemis Tosini";
|
||||
uid = 1000;
|
||||
shell = "/run/current-system/sw/bin/fish";
|
||||
extraGroups = [ "networkmanager" "wheel" "adbusers" "wireshark" "video" "docker" "lxd" "plugdev" "dialout" ];
|
||||
# hashedPassword set in private
|
||||
};
|
||||
|
|
1
externals/nixos-rocm
vendored
1
externals/nixos-rocm
vendored
|
@ -1 +0,0 @@
|
|||
Subproject commit a1f8c1518b4fd9ae718abd059986d004069be7da
|
7
externals/rules/ds4drv.nix
vendored
Normal file
7
externals/rules/ds4drv.nix
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ writeTextFile }:
|
||||
|
||||
writeTextFile {
|
||||
name = "ds4drv-udev-rules";
|
||||
text = builtins.readFile ./ds4drv.rules;
|
||||
destination = "/etc/udev/rules.d/50-ds4drv.rules";
|
||||
}
|
5
externals/rules/ds4drv.rules
vendored
Normal file
5
externals/rules/ds4drv.rules
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
KERNEL=="uinput", MODE="0666"
|
||||
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0666"
|
||||
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", KERNELS=="0005:054C:05C4.*", MODE="0666"
|
||||
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0666"
|
||||
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", KERNELS=="0005:054C:09CC.*", MODE="0666"
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
{
|
||||
fonts = {
|
||||
fontconfig.enable = true;
|
||||
enableDefaultFonts = true;
|
||||
fonts = with pkgs; [
|
||||
cantarell-fonts
|
||||
|
|
|
@ -14,7 +14,7 @@ in
|
|||
{
|
||||
environment.systemPackages = (with pkgs; [
|
||||
# Audiovisual
|
||||
audacity
|
||||
# audacity
|
||||
darktable
|
||||
exiftool
|
||||
ffmpeg-full
|
||||
|
@ -234,9 +234,10 @@ in
|
|||
zathura
|
||||
|
||||
# Web
|
||||
(chromium.override { useOzone = true; })
|
||||
# (chromium.override { useOzone = true; })
|
||||
chromium
|
||||
fullFirefox
|
||||
tor-browser-bundle-bin
|
||||
# tor-browser-bundle-bin
|
||||
|
||||
# Communication
|
||||
discord
|
||||
|
|
Loading…
Reference in a new issue