mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-24 11:50:45 -06:00
Compare commits
5 commits
17045e81b2
...
b156aa63f9
Author | SHA1 | Date | |
---|---|---|---|
b156aa63f9 | |||
32564f4fdc | |||
2e87afc0f8 | |||
480ca0c41e | |||
6fb8365c03 |
6 changed files with 29 additions and 17 deletions
|
@ -10,6 +10,7 @@ let
|
||||||
#supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
|
#supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
|
||||||
supportedSystems = [ "x86_64-linux" ];
|
supportedSystems = [ "x86_64-linux" ];
|
||||||
forAllSystems = f: genAttrs supportedSystems (system: f (import nixpkgs { inherit system; }));
|
forAllSystems = f: genAttrs supportedSystems (system: f (import nixpkgs { inherit system; }));
|
||||||
|
|
||||||
inheritFlakePkgs =
|
inheritFlakePkgs =
|
||||||
pkgs: flakes:
|
pkgs: flakes:
|
||||||
listToAttrs (
|
listToAttrs (
|
||||||
|
|
|
@ -13,11 +13,10 @@ in
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
[ (flake.pkg "f1multiviewer") ]
|
[ (flake.pkg "f1multiviewer") ]
|
||||||
++ (with pkgs; [
|
++ (with pkgs; [
|
||||||
|
pcmanfm
|
||||||
wezterm
|
wezterm
|
||||||
alacritty
|
alacritty
|
||||||
|
|
||||||
xfce.thunar
|
|
||||||
|
|
||||||
inkscape
|
inkscape
|
||||||
gimp
|
gimp
|
||||||
|
|
||||||
|
|
|
@ -62,11 +62,12 @@ mkOizysModule config "hyprland" {
|
||||||
];
|
];
|
||||||
# using the below to autostart Hyprland
|
# using the below to autostart Hyprland
|
||||||
# broke my keybindings that were working before
|
# broke my keybindings that were working before
|
||||||
# services.getty = {
|
|
||||||
# extraArgs = [ "--skip-login" ];
|
services.getty = {
|
||||||
# loginOptions = "-p -- ${config.oizys.user}";
|
extraArgs = [ "--skip-login" ];
|
||||||
# };
|
loginOptions = "-p -- ${config.oizys.user}";
|
||||||
#
|
};
|
||||||
|
|
||||||
# environment.etc =
|
# environment.etc =
|
||||||
# let
|
# let
|
||||||
# activate-snippet = ''
|
# activate-snippet = ''
|
||||||
|
|
|
@ -1,16 +1,25 @@
|
||||||
{ inputs, ... }:
|
{ inputs, ... }:
|
||||||
let
|
let
|
||||||
defaultOverlays =
|
inherit (builtins)
|
||||||
# execute and import all overlay files in the current
|
map
|
||||||
# directory with the given args
|
filter
|
||||||
builtins.map
|
attrNames
|
||||||
# execute and import the overlay file
|
readDir
|
||||||
(f: (import (./. + "/${f}") { inherit inputs; }))
|
;
|
||||||
# find all overlay files in the current directory
|
# execute and import all overlay files in the current
|
||||||
(builtins.filter (f: f != "default.nix") (builtins.attrNames (builtins.readDir ./.)));
|
# directory with the given args
|
||||||
|
# overlays =
|
||||||
|
# map
|
||||||
|
# (f: (import (./. + "/${f}") { inherit inputs; }))
|
||||||
|
# (filter (f: f != "default.nix") (attrNames (readDir ./.)));
|
||||||
|
overlays =
|
||||||
|
readDir ./.
|
||||||
|
|> attrNames
|
||||||
|
|> filter (f: f != "default.nix")
|
||||||
|
|> map (f: import (./. + "/${f}") { inherit inputs; });
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = defaultOverlays ++ [
|
nixpkgs.overlays = overlays ++ [
|
||||||
(final: _prev: {
|
(final: _prev: {
|
||||||
stable = import inputs.stable {
|
stable = import inputs.stable {
|
||||||
system = final.system;
|
system = final.system;
|
||||||
|
|
2
todo.md
2
todo.md
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## oizys
|
## oizys
|
||||||
|
|
||||||
|
- [ ] write a flake template that includes the systems boilerplate
|
||||||
|
|
||||||
## software
|
## software
|
||||||
|
|
||||||
- [ ] lid closed does not engage hyprlock?
|
- [ ] lid closed does not engage hyprlock?
|
||||||
|
|
Loading…
Reference in a new issue