fixes
This commit is contained in:
parent
689f5dea6d
commit
7dd47b6238
16 changed files with 284 additions and 38 deletions
|
@ -19,6 +19,8 @@
|
|||
hm.enable = true;
|
||||
hypr.enable = true;
|
||||
|
||||
rust.enable = true;
|
||||
|
||||
firefox.enable = true;
|
||||
vpn.hft.enable = true;
|
||||
|
||||
|
@ -26,6 +28,8 @@
|
|||
"obsidian"
|
||||
"slack"
|
||||
"discord"
|
||||
"terraform"
|
||||
"yandex-cloud"
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
{ pkgs, config, lib, modulesPath, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Brightness control for display.
|
||||
brightnessctl
|
||||
];
|
||||
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
@ -24,6 +29,18 @@
|
|||
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
driSupport32Bit = true;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
amdvlk
|
||||
];
|
||||
extraPackages32 = with pkgs; [
|
||||
driversi686Linux.amdvlk
|
||||
];
|
||||
};
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
|
|
|
@ -1,10 +1,17 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
virtualisation.docker.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
obsidian
|
||||
kitty
|
||||
git
|
||||
ripgrep
|
||||
signal-desktop
|
||||
terraform
|
||||
wine
|
||||
winetricks
|
||||
yandex-cloud
|
||||
];
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue