Merge branch 'master' of ssh://git.fudo.org:2222/fudosys/NixOS
This commit is contained in:
commit
621ddd6251
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,3 @@
|
|||||||
configuration.nix
|
configuration.nix
|
||||||
hardware-configuration.nix
|
|
||||||
*~
|
*~
|
||||||
|
hardware-configuration.nix
|
||||||
|
@ -6,20 +6,42 @@ let
|
|||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
../defaults.nix
|
../defaults.nix
|
||||||
../networks/sea.fudo.org.nix
|
|
||||||
../profiles/desktop.nix
|
|
||||||
../hardware-configuration.nix
|
../hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
"google-chrome-81.0.4044.138"
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# androidStudioPackages.canary
|
||||||
|
androidenv.androidPkgs_9_0.platform-tools
|
||||||
|
cmake
|
||||||
|
glxinfo
|
||||||
|
opencv4
|
||||||
|
qemu_kvm
|
||||||
|
signal-cli
|
||||||
|
signal-desktop
|
||||||
|
teamviewer
|
||||||
|
thunderbird
|
||||||
|
wireshark
|
||||||
|
];
|
||||||
|
|
||||||
|
fudo.common = {
|
||||||
|
profile = "desktop";
|
||||||
|
site = "seattle";
|
||||||
|
enable-gui = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi = {
|
boot.loader.efi = {
|
||||||
canTouchEfiVariables = true;
|
canTouchEfiVariables = true;
|
||||||
efibootmgr = {
|
};
|
||||||
efiDisk = "/dev/sda1";
|
|
||||||
};
|
|
||||||
|
|
||||||
# efiSysMountPoint = "/boot/efi";
|
programs = {
|
||||||
|
adb.enable = true;
|
||||||
|
bash.enableCompletion = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = hostname;
|
networking.hostName = hostname;
|
||||||
@ -29,4 +51,13 @@ in {
|
|||||||
hardware.opengl.driSupport32Bit = true;
|
hardware.opengl.driSupport32Bit = true;
|
||||||
hardware.opengl.driSupport = true;
|
hardware.opengl.driSupport = true;
|
||||||
|
|
||||||
|
services = {
|
||||||
|
trezord.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
virtualisation.libvirtd = {
|
||||||
|
enable = true;
|
||||||
|
qemuPackage = pkgs.qemu_kvm;
|
||||||
|
onShutdown = "shutdown";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user