Compare commits
No commits in common. "1216b184aeb5432aac9386f32526bdaade94c9c2" and "9fc91bf87bc1915819bff9b51a986010f665a5d3" have entirely different histories.
1216b184ae
...
9fc91bf87b
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +0,0 @@
|
||||||
# Ignore ISO builds and whatever
|
|
||||||
result/
|
|
||||||
result
|
|
11
flake.nix
11
flake.nix
|
@ -75,17 +75,6 @@
|
||||||
inherit self inputs username;
|
inherit self inputs username;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
fruesos-live = nixpkgs.lib.nixosSystem {
|
|
||||||
inherit system;
|
|
||||||
modules = [
|
|
||||||
(nixpkgs + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
|
|
||||||
(import ./hosts/fruesos-live)
|
|
||||||
];
|
|
||||||
specialArgs = {
|
|
||||||
host = "fruesos-live";
|
|
||||||
inherit self inputs username;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
pkgs,
|
|
||||||
username,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
|
||||||
./../../modules/core
|
|
||||||
];
|
|
||||||
|
|
||||||
networking.hostName = "fruesos-live";
|
|
||||||
|
|
||||||
powerManagement.cpuFreqGovernor = "balanced";
|
|
||||||
|
|
||||||
systemd.services.sshd.wantedBy = pkgs.lib.mkForce ["multi-user.target"];
|
|
||||||
users.users.root.openssh.authorizedKeys.keys = [
|
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJji4h4bgzgmp7YoRX/8ePN0TcCYRfI2wlrEeZkBQ/y2 personal@peprolinbot.com"
|
|
||||||
];
|
|
||||||
|
|
||||||
# Less compression, but faster build
|
|
||||||
# isoImage.squashfsCompression = "gzip -Xcompression-level 1";
|
|
||||||
|
|
||||||
# You can not use networking.networkmanager with networking.wireless.
|
|
||||||
networking.wireless.enable = false;
|
|
||||||
|
|
||||||
# Automatically log in at the virtual consoles.
|
|
||||||
services.getty.autologinUser = lib.mkForce "pedro";
|
|
||||||
|
|
||||||
# Allow the user to log in as pedro without a password.
|
|
||||||
users.users.${username}.initialHashedPassword = "";
|
|
||||||
|
|
||||||
# Autologin
|
|
||||||
services.greetd.settings.initial_session = {
|
|
||||||
command = "Hyprland";
|
|
||||||
user = "pedro";
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager.users.${username}.services.nextcloud-client.enable = lib.mkForce false;
|
|
||||||
}
|
|
|
@ -11,6 +11,7 @@
|
||||||
element-desktop # Matrix client
|
element-desktop # Matrix client
|
||||||
fd # find replacement
|
fd # find replacement
|
||||||
file # Show file information
|
file # Show file information
|
||||||
|
flameshot # Screenshot tool
|
||||||
fzf # fuzzy finder
|
fzf # fuzzy finder
|
||||||
gimp
|
gimp
|
||||||
gtrash # rm replacement, put deleted files in system trash
|
gtrash # rm replacement, put deleted files in system trash
|
||||||
|
@ -22,7 +23,6 @@
|
||||||
jq
|
jq
|
||||||
nitch # systhem fetch util
|
nitch # systhem fetch util
|
||||||
nix-prefetch-github
|
nix-prefetch-github
|
||||||
kdePackages.okular # KDE's pdf viewer/editor (supports digital signing)
|
|
||||||
ripgrep # grep replacement
|
ripgrep # grep replacement
|
||||||
simple-scan
|
simple-scan
|
||||||
swappy
|
swappy
|
||||||
|
@ -30,7 +30,6 @@
|
||||||
todo # cli todo list
|
todo # cli todo list
|
||||||
toipe # typing test in the terminal
|
toipe # typing test in the terminal
|
||||||
vlc
|
vlc
|
||||||
xournalpp # For notes and pdf editing
|
|
||||||
yazi # terminal file manager
|
yazi # terminal file manager
|
||||||
yt-dlp
|
yt-dlp
|
||||||
zenity
|
zenity
|
||||||
|
|
Loading…
Reference in a new issue