Compare commits
3 commits
019df6a883
...
7476ee2a04
Author | SHA1 | Date | |
---|---|---|---|
|
7476ee2a04 | ||
|
59d4f13247 | ||
|
82ee674db4 |
11
common/utilities.nix
Normal file
11
common/utilities.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# CLI utilities I get frustrated if I'm missing
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
inetutils
|
||||
parted
|
||||
wget
|
||||
];
|
||||
}
|
1
hive.nix
1
hive.nix
|
@ -11,6 +11,7 @@ in {
|
|||
imports = [
|
||||
(import "${sources.home-manager}/nixos")
|
||||
./pinning.nix
|
||||
./common/utilities.nix
|
||||
./users/qenya.nix
|
||||
];
|
||||
};
|
||||
|
|
|
@ -27,6 +27,9 @@
|
|||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = true;
|
||||
|
||||
# USB drives
|
||||
boot.supportedFilesystems = [ "ntfs" ];
|
||||
|
||||
hardware.enableAllFirmware = true;
|
||||
services.fwupd.enable = true;
|
||||
services.fstrim.enable = true;
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
|
||||
home.packages = with pkgs; [
|
||||
bitwarden
|
||||
foliate
|
||||
keepassxc
|
||||
tor-browser-bundle-bin
|
||||
];
|
||||
programs.chromium.enable = true;
|
||||
|
|
Loading…
Reference in a new issue