separate into machine and user specific profiles
This commit is contained in:
parent
7d9fe63a4a
commit
3849967624
6 changed files with 95 additions and 49 deletions
21
system/adrift.nix
Normal file
21
system/adrift.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
networking.hostName = "adrift"; # Define your hostname.
|
||||
services.xserver.videoDrivers = [ "i915" ];
|
||||
|
||||
users.users.plank = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
};
|
||||
fileSystems."/" = {
|
||||
device = "/dev/mapper/nix-os";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/home" = {
|
||||
device = "/dev/mapper/nix-home";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue