sway: added sway profile
This commit is contained in:
parent
3540cfa5ac
commit
014be05488
|
@ -6,11 +6,11 @@
|
|||
imports = [
|
||||
../hardware/eeepc701.nix # Include common configuration options
|
||||
../secrets/wireless.nix
|
||||
../profiles/sway.nix
|
||||
];
|
||||
|
||||
deployment.targetHost = "10.42.0.119";
|
||||
networking.hostName = "dhu"; # Define your hostname.
|
||||
programs.sway.enable = true;
|
||||
|
||||
system.stateVersion = "20.09"; # The version of NixOS originally installed
|
||||
|
||||
|
|
16
profiles/sway.nix
Normal file
16
profiles/sway.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Configuration the Sway window manager
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.sway = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
alacritty
|
||||
dmenu
|
||||
swayidle
|
||||
swaylock
|
||||
xwayland
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue