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: on:
push: push:
branches: branches:
@ -11,7 +12,7 @@ jobs:
build: build:
strategy: strategy:
matrix: matrix:
host: ["othalan", "algiz"] host: ["othalan", "algiz", "mannaz"]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# free up some space # free up some space

View File

@ -1,3 +1,3 @@
# daylin's nixcfg # 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; [ imports = with inputs.self.nixosModules; [
./hardware-configuration.nix
./system.nix
./motd.nix
cli
desktop desktop
dev
gui
nix
nix-ld
nvim nvim
gui
nix-ld
virtualization virtualization
]; ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nix-output-monitor
(vivaldi.override { (vivaldi.override {
proprietaryCodecs = true; proprietaryCodecs = true;
# enableWidevine = true; # enableWidevine = true;
@ -30,12 +22,11 @@
]; ];
users = { users = {
defaultUserShell = pkgs.zsh;
extraUsers = { extraUsers = {
daylin = { daylin = {
shell = pkgs.zsh;
isNormalUser = true; isNormalUser = true;
extraGroups = ["wheel" "docker" "networkmanager"]; extraGroups = ["wheel" "docker" "networkmanager"];
useDefaultShell = true;
initialPassword = "nix"; initialPassword = "nix";
}; };
}; };