Added Fiona's desktop apps

This commit is contained in:
Craige McWhirter 2021-05-05 14:02:02 +10:00
parent 52775b22d5
commit 27609b25e7
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA
2 changed files with 13 additions and 1 deletions

View file

@ -6,6 +6,7 @@
imports =
[
../hardware/lenovo_x201.nix
../profiles/desktopFiona.nix
../profiles/desktop_common.nix
];
@ -14,7 +15,7 @@
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
deployment.targetHost = "10.42.0.114";
deployment.targetHost = "10.42.0.118";
networking.hostName = "sithlainnir"; # Define your hostname.
system.stateVersion = "18.09"; # The version of NixOS originally installed

11
profiles/desktopFiona.nix Normal file
View file

@ -0,0 +1,11 @@
# Fiona's desktop requirements
{ config, pkgs, ... }:
{
# Fiona's Desktop Packages
environment.systemPackages = with pkgs; [
slack-dark # Slack desktop client
zoom-us # zoom.us video conferencing application
];
}