started new config
This commit is contained in:
29
hosts/virtual-bird/default.nix
Normal file
29
hosts/virtual-bird/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../../profiles/base.nix
|
||||
../../profiles/desktop.nix
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
services.xserver.windowManager.i3.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
rofi
|
||||
dunst
|
||||
vim
|
||||
tmux
|
||||
];
|
||||
|
||||
networking.hostName = "virtual-bird";
|
||||
networking.firewall.enable = true;
|
||||
|
||||
system.stateVersion = "25.11"; # Did you read the comment?
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user