Compare commits
6 commits
c1309c7d92
...
6c7bc148ae
Author | SHA1 | Date | |
---|---|---|---|
6c7bc148ae | |||
cdb6094026 | |||
01b2cdb5e8 | |||
9fb28e9726 | |||
7d9d63c02b | |||
18eacb26dc |
5 changed files with 1059 additions and 36 deletions
3
bin/project-select.sh
Executable file
3
bin/project-select.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
for d in `find ~/freistil -maxdepth 1 -type d`; do
|
||||
echo -e "$d\034freistil\034freistil project `basename $d`"
|
||||
done
|
1067
flake.lock
1067
flake.lock
File diff suppressed because it is too large
Load diff
|
@ -24,6 +24,9 @@
|
|||
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
niri = {
|
||||
url = "github:sodiboo/niri-flake";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
|
@ -34,6 +37,7 @@
|
|||
sops-nix,
|
||||
stylix,
|
||||
lix-module,
|
||||
niri,
|
||||
...
|
||||
} @ inputs: let
|
||||
inherit (self) outputs;
|
||||
|
@ -47,7 +51,8 @@
|
|||
modules = [
|
||||
./hosts/cube.nix
|
||||
lix-module.nixosModules.default
|
||||
inputs.sops-nix.nixosModules.sops
|
||||
sops-nix.nixosModules.sops
|
||||
niri.nixosModules.niri
|
||||
];
|
||||
};
|
||||
muhhStar = lib.nixosSystem {
|
||||
|
@ -71,6 +76,7 @@
|
|||
inputs.nixvim.homeManagerModules.nixvim
|
||||
inputs.sops-nix.homeManagerModules.sops
|
||||
inputs.stylix.homeManagerModules.stylix
|
||||
inputs.niri.homeModules.niri
|
||||
./home.nix
|
||||
];
|
||||
};
|
||||
|
|
8
home.nix
8
home.nix
|
@ -22,6 +22,7 @@
|
|||
_1password
|
||||
_1password-gui
|
||||
atkinson-hyperlegible
|
||||
alacritty
|
||||
brightnessctl
|
||||
curl
|
||||
ddcutil
|
||||
|
@ -29,6 +30,7 @@
|
|||
dog
|
||||
fd
|
||||
ffmpegthumbnailer
|
||||
fuzzel
|
||||
git
|
||||
htop
|
||||
httpie
|
||||
|
@ -242,6 +244,9 @@
|
|||
vimKeys = true;
|
||||
sidebar.enable = true;
|
||||
};
|
||||
niri = {
|
||||
enable = false;
|
||||
};
|
||||
nixvim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
|
@ -501,7 +506,8 @@
|
|||
image = /home/muhh/Sync/Backgrounds/wald.jpg;
|
||||
polarity = "dark";
|
||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-city-terminal-dark.yaml";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/everforest.yaml";
|
||||
fonts = {
|
||||
monospace = {
|
||||
package = (pkgs.nerdfonts.override { fonts = [ "Iosevka" ]; });
|
||||
|
|
|
@ -33,6 +33,14 @@
|
|||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
# Workaround for broken networkmanager/systemd thing
|
||||
# https://github.com/NixOS/nixpkgs/issues/180175#issuecomment-1658731959
|
||||
systemd.services.NetworkManager-wait-online = {
|
||||
serviceConfig = {
|
||||
ExecStart = [ "" "${pkgs.networkmanager}/bin/nm-online -q" ];
|
||||
};
|
||||
};
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
|
@ -139,6 +147,7 @@
|
|||
enable = true;
|
||||
brightnessKeys.enable = true;
|
||||
};
|
||||
# niri.enable = true;
|
||||
sway.enable = true;
|
||||
};
|
||||
virtualisation = {
|
||||
|
|
Loading…
Reference in a new issue