Many things:

- updated inputs
- added new host `hs`
- workflows to check and release new host `hs`
- chrome instead of chromium (if not on aarch64)
- fixed bud configuration error for `pc` host
- fixed Emacs purescript format on save
This commit is contained in:
Andrea Ciceri 2021-11-13 19:01:43 +01:00
parent 4e8adcfafb
commit ecb7bc935b
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
13 changed files with 125 additions and 72 deletions

View file

@ -1,11 +1,16 @@
{ pkgs, suites, lib, ... }:
{ pkgs, suites, lib, config, ... }:
{
home-manager.users.ccr = { suites, ... }: {
imports = with suites; shell ++ gui ++ browser ++ multimedia ++ emails ++ dev ++ base;
imports = with suites; shell ++ base ++ (if config.networking.hostName != "hs" then
(
gui ++ browser ++ multimedia ++ emails ++ dev
) else [ ]);
home.packages = with pkgs; [
ack
ranger
] ++ (if config.networking.hostName != "hs" then [
imv
calibre
element-desktop
@ -16,7 +21,7 @@
yarn
yarn2nix
texlive.combined.scheme-full
];
] else [ ]);
};
users.users.ccr = {