initial comit
This commit is contained in:
Executable
+37
@@ -0,0 +1,37 @@
|
||||
{ config, pkgs, lib, home-manager, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../modules/sway.nix
|
||||
../../modules/dev.nix
|
||||
./sway.nix
|
||||
./hardware-configuration.nix
|
||||
|
||||
# home manager integration
|
||||
home-manager.nixosModules.home-manager
|
||||
./home.nix
|
||||
];
|
||||
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.useGlobalPkgs = true;
|
||||
|
||||
# bootloader
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "dev-vm";
|
||||
|
||||
# time and localization
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
# vm guest config
|
||||
virtualisation.virtualbox.guest.enable = true;
|
||||
virtualisation.virtualbox.guest.clipboard = true;
|
||||
|
||||
# users
|
||||
users.users.alex = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user