Skip to content

egorderg/nixos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FileSystems

Example of a fs.nix configuration

{ config, pkgs, ... }:
{
	fileSystems."/mnt/Example" = {
		device = "//123.123.1.2/Example";	
		fsType = "cifs";
		options = [ "credentials=/root/nixos/nas-secrets,uid=${toString config.users.users.egor.uid},noauto" ];
	};

	environment.systemPackages = with pkgs; [
		cifs-utils
	];
}

SecureBoot

https://nixos.wiki/wiki/Secure_Boot

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published