summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-02-28 21:31:35 +0000
committerGitHub <noreply@github.com>2024-02-28 21:31:35 +0000
commit5c2bd117a5601bf6d91dba5bdc833c4bc97dd1cc (patch)
tree427b28008ad4b59254fc1df0e948259435f7381c
parent1bc494620a5bd0c8e691e560f99a791cd634a948 (diff)
add veracrypt
-rw-r--r--configuration.nix1
-rw-r--r--home.nix3
2 files changed, 4 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix
index 60727d9..a090a9d 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -17,6 +17,7 @@
boot.loader.grub.devices = [ "nodev" ];
boot.loader.grub.efiSupport = true;
boot.loader.grub.useOSProber = true;
+ boot.supportedFilesystems = [ "ntfs" ];
networking.hostName = "nixos"; # Define your hostname.
networking.wireless.enable = false; # Enables wireless support via wpa_supplicant.
diff --git a/home.nix b/home.nix
index 138ec32..d5f6b87 100644
--- a/home.nix
+++ b/home.nix
@@ -14,7 +14,10 @@
home.homeDirectory = "/home/ozpv";
home.stateVersion = "23.11"; # Please read the comment before changing.
+ nixpkgs.config.allowUnfree = true;
+
home.packages = with pkgs; [
+ veracrypt
keepassxc
neofetch
];