Compare commits
2 commits
d78c2e3f67
...
3c3b192f35
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c3b192f35 | |||
| 17f58cfeba |
4 changed files with 35 additions and 4 deletions
16
flake.lock
generated
16
flake.lock
generated
|
|
@ -299,6 +299,21 @@
|
|||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"nur": {
|
||||
"locked": {
|
||||
"lastModified": 1705847594,
|
||||
"narHash": "sha256-YtoT6OoTIkYcwm+VPeqn+cJhyacd/WIMtBoBEvRDYVY=",
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"rev": "2b4a30cde35eb5b7813c731aa26fc475a27c723e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"repo": "NUR",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"plasma-manager": {
|
||||
"inputs": {
|
||||
"home-manager": [
|
||||
|
|
@ -336,6 +351,7 @@
|
|||
"nixos-hardware": "nixos-hardware",
|
||||
"nixpkgs-raw": "nixpkgs-raw",
|
||||
"nixpkgs-unstable-raw": "nixpkgs-unstable-raw",
|
||||
"nur": "nur",
|
||||
"plasma-manager": "plasma-manager",
|
||||
"vscode-extensions": "vscode-extensions"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -63,6 +63,8 @@
|
|||
|
||||
};
|
||||
nix-flatpak.url = github:gmodena/nix-flatpak/main;
|
||||
|
||||
nur.url = "github:nix-community/NUR";
|
||||
};
|
||||
|
||||
outputs = { ... } @inputs: with inputs;
|
||||
|
|
|
|||
|
|
@ -1,16 +1,25 @@
|
|||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
{ config, lib, flakeSelf, modulesPath, ... }:
|
||||
|
||||
let
|
||||
# \x20 is the escape code for a space
|
||||
ssdLabel = ''Win\\x20Max\\x202\\x20SSD'';
|
||||
|
||||
# You need to do fucky shit to import modules from the NUR
|
||||
# https://github.com/nix-community/NUR#using-the-flake-in-nixos
|
||||
nur = import flakeSelf.inputs.nur {
|
||||
nurpkgs = import flakeSelf.inputs.nixpkgs-unstable-raw {
|
||||
system = "x86_64-linux";
|
||||
};
|
||||
};
|
||||
in
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
nur.repos.cryolitia.modules.bmi260
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usbhid" "sdhci_pci" ];
|
||||
|
|
@ -66,5 +75,8 @@ in
|
|||
swapDevices = [ ];
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
hardware = {
|
||||
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
sensor.iio.bmi260.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{ config, lib, pkgs, flakeSelf, ... }:
|
||||
|
||||
{
|
||||
imports = [ flakeSelf.inputs.nur.nixosModules.nur ];
|
||||
environment = {
|
||||
# As of the 1st of May 2023, the default packages are nano, perl, rsync and strace
|
||||
# I don't need any of them, so I just empty the list
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue