will it build?

This commit is contained in:
Daylin Morgan 2024-01-23 16:09:05 -06:00
parent 3f852c90a6
commit fa36228045
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
3 changed files with 8 additions and 16 deletions

View File

@ -1,4 +1,5 @@
name: Build & Push
name: Build NixOS
on:
push:
branches:
@ -11,7 +12,7 @@ jobs:
build:
strategy:
matrix:
host: ["othalan", "algiz"]
host: ["othalan", "algiz", "mannaz"]
runs-on: ubuntu-latest
steps:
# free up some space

View File

@ -1,3 +1,3 @@
# daylin's nixcfg
![](https://github.com/daylinmorgan/nixcfg/actions/workflows/build.yml/badge.svg)

View File

@ -6,23 +6,15 @@
...
}: {
imports = with inputs.self.nixosModules; [
./hardware-configuration.nix
./system.nix
./motd.nix
cli
desktop
dev
gui
nix
nix-ld
nvim
gui
nix-ld
virtualization
];
environment.systemPackages = with pkgs; [
nix-output-monitor
(vivaldi.override {
proprietaryCodecs = true;
# enableWidevine = true;
@ -30,12 +22,11 @@
];
users = {
defaultUserShell = pkgs.zsh;
extraUsers = {
daylin = {
shell = pkgs.zsh;
isNormalUser = true;
extraGroups = ["wheel" "docker" "networkmanager"];
useDefaultShell = true;
initialPassword = "nix";
};
};