mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 06:00:45 -06:00
will it build?
This commit is contained in:
parent
3f852c90a6
commit
fa36228045
3 changed files with 8 additions and 16 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -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
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# daylin's nixcfg
|
# daylin's nixcfg
|
||||||
|
|
||||||
|
![](https://github.com/daylinmorgan/nixcfg/actions/workflows/build.yml/badge.svg)
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue